summaryrefslogtreecommitdiff
path: root/src (follow)
Commit message (Collapse)AuthorAgeFilesLines
* left const auto&, comment punctuation.Gravatar Ameer J2020-06-261-2/+2
| | | Co-authored-by: Morph <39850852+Morph1984@users.noreply.github.com>
* const& to button in button arrayGravatar Ameer J2020-06-251-2/+2
| | | Co-authored-by: VolcaEM <63682805+VolcaEM@users.noreply.github.com>
* Stop reading loop if error is encounteredGravatar Ameer2020-06-251-4/+4
|
* padbutton enum class and struct initiailizationGravatar Ameer2020-06-243-36/+32
|
* cleanup check access, read, and factory GetNextInput funcs. Use size rather ↵Gravatar Ameer2020-06-234-151/+101
| | | | than magic number
* Fix deallocation of GC AdapterGravatar Ameer2020-06-233-4/+10
|
* Small quality of life indication that mapped button is GCGravatar Ameer2020-06-221-2/+2
|
* std::array and const reference passing of non-trivial objectsGravatar Ameer2020-06-222-14/+13
|
* Update src/input_common/main.cppGravatar ameerj2020-06-221-1/+1
| | | | | | Co-authored-by: LC <mathew1800@gmail.com> update libusb submodule (hopefully windows build error fixed)
* Tidy up the pointers, use pair over tuple where appropriateGravatar Ameer2020-06-214-24/+22
|
* fix for sleep using stlGravatar Ameer2020-06-211-1/+3
|
* shared_ptr for the GC adapter class, constexpr constantsGravatar Ameer2020-06-215-66/+52
|
* std::arrays where appropriate, clear q in adapter class, other touch upsGravatar Ameer2020-06-215-27/+15
|
* fix include threadGravatar Ameer2020-06-211-0/+1
|
* Singleton GC Adapter class, remove globals, fix naming conventionGravatar Ameer2020-06-218-228/+283
| | | | | | | | Fix clang formatting Manual fix for configure_input_player formatting Add missing lib usb cmake command
* Clang FormattingGravatar Ameer2020-06-219-182/+184
|
* Cleanup after linterGravatar Ameer2020-06-219-167/+98
|
* GC Adapter ImplementationGravatar Ameer2020-06-2118-161/+1159
|
* Merge pull request #4120 from lioncash/arbGravatar bunnei2020-06-201-32/+31
|\ | | | | gl_arb_decompiler: Avoid several string copies
| * gl_arb_decompiler: Avoid several string copiesGravatar Lioncash2020-06-191-32/+31
| | | | | | | | | | | | Variables that are marked as const cannot have the move constructor invoked when returning from a function (the move constructor requires a non-const variable so it can "steal" the resources from it.
* | macro_jit_x64: Use ecx for shift registerGravatar MerryMage2020-06-201-2/+2
| | | | | | | | shl/shr only accept cl as their second argument
* | Merge pull request #4125 from lioncash/macro-shiftGravatar merry2020-06-201-6/+7
|\ \ | | | | | | macro_jit_x64: Amend readability of Compile_ExtractShiftLeftRegister()
| * | macro_jit_x64: Correct readability of Compile_ExtractShiftLeftImmediate()Gravatar Lioncash2020-06-191-3/+3
| | | | | | | | | | | | Previously dst wasn't being used.
| * | macro_jit_x64: Correct readability of Compile_ExtractShiftLeftRegister()Gravatar Lioncash2020-06-191-3/+4
| |/ | | | | | | Previously dst wasn't being used.
* | Merge pull request #4123 from lioncash/unused-varGravatar merry2020-06-201-2/+1
|\ \ | | | | | | macro_jit_x64: Remove unused variable
| * | macro_jit_x64: Remove unused variableGravatar Lioncash2020-06-191-2/+1
| |/ | | | | | | | | Removes a completely unused label and marks another variable as unused, given it seems like it has potential uses in the future.
* | Merge pull request #4099 from MerryMage/macOS-buildGravatar bunnei2020-06-199-19/+38
|\ \ | | | | | | Fix compilation on macOS
| * | bootmanager: Remove references to OpenGL for macOSGravatar MerryMage2020-06-182-2/+19
| | | | | | | | | | | | OpenGL macOS headers definitions clash heavily with each other
| * | memory_manager: Explicitly specifcy std::min<size_t>Gravatar MerryMage2020-06-181-2/+2
| | |
| * | shared_font: Service::NS::EncryptSharedFont takes a size_t&Gravatar MerryMage2020-06-181-1/+1
| | |
| * | vk_rasterizer: BindTransformFeedbackBuffersEXT accepts a size of type ↵Gravatar MerryMage2020-06-181-1/+1
| | | | | | | | | | | | VkDeviceSize
| * | renderer_vulkan: Fix macOS GetBundleDirectory referenceGravatar MerryMage2020-06-181-1/+3
| | |
| * | memory_util: boost hashes are size_tGravatar MerryMage2020-06-181-2/+2
| | | | | | | | | | | | | | | * boost::hash_value returns a size_t * boost::hash_combine takes a size_t& argument
| * | Rename PAGE_SHIFT to PAGE_BITSGravatar MerryMage2020-06-182-10/+10
| | | | | | | | | | | | macOS header files #define PAGE_SHIFT
* | | Merge pull request #4113 from ogniK5377/boxcat-disableGravatar bunnei2020-06-192-3/+7
|\ \ \ | | | | | | | | Fix compilation when not building with boxcat
| * | | Add translation of "Current Boxcat Events"Gravatar David Marcec2020-06-201-3/+2
| | | |
| * | | Fix compilation when not building with boxcatGravatar David Marcec2020-06-192-2/+7
| | |/ | |/| | | | | | | Fixes compilation when trying to build without boxcat enabled
* | | Merge pull request #4087 from MerryMage/macrojit-inline-ReadGravatar bunnei2020-06-192-14/+22
|\ \ \ | | | | | | | | macro_jit_x64: Inline Engines::Maxwell3D::GetRegisterValue
| * | | macro_jit_x64: Remove unused function ReadGravatar MerryMage2020-06-191-8/+4
| | | |
| * | | macro_jit_x64: Inline Engines::Maxwell3D::GetRegisterValueGravatar MerryMage2020-06-172-6/+18
| | | |
* | | | input_common/motion_emu: Remove redundant moveGravatar MerryMage2020-06-191-1/+1
| | | | | | | | | | | | | | | | Named return value optimization automatically applies here.
* | | | input_common/keyboard: Remove redundant moveGravatar MerryMage2020-06-191-1/+1
| | | | | | | | | | | | | | | | Named return value optimization automatically applies here.
* | | | mii_model: Remove redundant std::moveGravatar MerryMage2020-06-191-1/+1
| |/ / |/| | | | | | | | Named return value optimization automatically applies here.
* | | Merge pull request #4080 from ogniK5377/audren-RendererInfoGravatar bunnei2020-06-192-6/+26
|\ \ \ | | | | | | | | audren: Implement RendererInfo
| * | | audren: Implement RendererInfoGravatar David Marcec2020-06-132-6/+26
| | | | | | | | | | | | | | | | Fixes ZLA softlock
* | | | Merge pull request #4090 from MerryMage/macrojit-bugsGravatar bunnei2020-06-181-2/+5
|\ \ \ \ | | | | | | | | | | macro_jit_x64: Optimization correctness
| * | | | macro_jit_x64: Optimization implicitly assumes same destinationGravatar MerryMage2020-06-171-1/+2
| | | | |
| * | | | macro_jit_x64: Should not skip zero registers for certain ALU opsGravatar MerryMage2020-06-171-1/+3
| | | | | | | | | | | | | | | | | | | | The code generated for these ALU ops assume src_a and src_b are always valid.
* | | | | Merge pull request #4081 from Morph1984/maxwell-to-gl-vkGravatar Rodrigo Locatti2020-06-183-67/+53
|\ \ \ \ \ | | | | | | | | | | | | maxwell_to_gl/vk: Miscellaneous changes
| * | | | | vk_sampler_cache: Emulate GL_LINEAR/NEAREST minification filtersGravatar Morph2020-06-181-2/+4
| | | | | | | | | | | | | | | | | | | | | | | | Emulate GL_LINEAR/NEAREST minification filters using minLod = 0 and maxLod = 0.25 during sampler creation