summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2018-10-23Merge pull request #1539 from lioncash/dmabunnei
maxwell_dma: Silence compilation warnings
2018-10-23Merge pull request #1470 from FernandoS27/alpha_testingbunnei
Implemented Alpha Test using Shader Emulation
2018-10-23Merge pull request #1512 from ReinUsesLisp/brkbunnei
gl_shader_decompiler: Implement PBK and BRK
2018-10-22Merge pull request #1550 from FernandoS27/fmul32bunnei
Added Saturation to FMUL32I
2018-10-22Merge pull request #1543 from lioncash/targetbunnei
CMakeLists: Use target_compile_definitions instead of add_definitions to define YUZU_ENABLE_COMPATIBILITY_REPORTING
2018-10-22Merge pull request #1537 from lioncash/shaderbunnei
gl_shader_decompiler: Minor changes
2018-10-22Added Saturation to FMUL32IFernandoS27
2018-10-22Assert that multiple render targets are not set while alpha testingFernandoS27
2018-10-22Merge pull request #1545 from DarkLordZach/psmbunnei
psm: Add psm service and stub commands 0 and 1
2018-10-22Use standard UBO and fix/stylize the codeFernandoS27
2018-10-22Cache uniform locations and restructure the implementationFernandoS27
2018-10-22Remove SyncAlphaTest and clang formatFernandoS27
2018-10-22Added Alpha FuncFernandoS27
2018-10-22Implemented Alpha TestingFernandoS27
2018-10-22Merge pull request #1541 from lioncash/definebunnei
web_service/CMakeLists: Make the CPPHTTPLIB_OPENSSL_SUPPORT constrained to the web_service library only
2018-10-22Merge pull request #1538 from lioncash/querybunnei
svc: Fix vma boundary check in svcQueryMemory
2018-10-22Merge pull request #1547 from FernandoS27/fix-fsetbunnei
Fixed FSETP and FSET
2018-10-22Fixed FSETP and FSETFernandoS27
2018-10-22Merge pull request #1546 from lioncash/svc-againbunnei
service: Update service function tables
2018-10-22Merge pull request #1548 from FernandoS27/fix-vaobunnei
Fixed VAOs Float types only returning GL_FLOAT
2018-10-22Fixed VAOs Float types only returning GL_FLOAT in cases that they had to ↵FernandoS27
return GL_HALF_FLOAT
2018-10-21psm: Stub GetChargerTypeZach Hilman
Used by LovePotion Lua Homebrew. Stubbed as connected to official Nintendo Switch dock.
2018-10-21Merge pull request #1544 from DarkLordZach/reinitialize-keys-toolsbunnei
qt: Move Reinitialize Keys to Tools menu
2018-10-21service: Add the basic skeleton for the NPNS servicesLioncash
2018-10-21hid: Update service function table for hidbusLioncash
Updated based off information provided by Switchbrew.
2018-10-21am: Add the basic skeleton for the tcap serviceLioncash
Added based off information provided by Switchbrew.
2018-10-21am: Update service function tablesLioncash
Updated based off information from Switchbrew
2018-10-21prepo: Update service function table.Lioncash
Also introduces the new prepo:a2 service. Updated based off information provided by Switchbrew.
2018-10-21lbl: Update service function table namesLioncash
Updated based off information provided by Switchbrew.
2018-10-20Merge pull request #1531 from ogniK5377/hid-fixesbunnei
Added auto controller switching to supported controllers and single joycon button rotation
2018-10-20qt: Move Reinitialize Keys to Tools menuZach Hilman
2018-10-20psm: Stub GetBatteryChargePercentageZach Hilman
Used by LovePotion Lua Homebrew. Stubbed to return 100% charge.
2018-10-20service: Add skeleton for psm serviceZach Hilman
Seems to be the power controller. Listed in switchbrew under the category PTM services.
2018-10-20CMakeLists: Use target_compile_definitions instead of add_definitions to ↵Lioncash
define YUZU_ENABLE_COMPATIBILITY_REPORTING Keeps the definition constrained to the yuzu target and prevents polluting anything else in the same directory (should that ever happen). It also keeps it consistent with how the USE_DISCORD_PRESENCE definition is introduced below it.
2018-10-20web_service/CMakeLists: Make the CPPHTTPLIB_OPENSSL_SUPPORT constrained to ↵Lioncash
the web_service library only Given we link in httplib privately, we can also make the definition enabling OpenSSL support private as well. Prevents leaking a definition into other libraries that link with this one, like the core library.
2018-10-20engines/maxwell_*: Use nested namespace specifiers where applicableLioncash
These three source files are the only ones within the engines directory that don't use nested namespaces. We may as well change these over to keep things consistent.
2018-10-20maxwell_dma: Make variables const where applicable within HandleCopy()Lioncash
These are never modified, so we can make that assumption explicit.
2018-10-20maxwell_dma: Make FlushAndInvalidate's size parameter a u64Lioncash
This prevents truncation warnings at the lambda's usage sites.
2018-10-20maxwell_dma: Remove unused variables in HandleCopy()Lioncash
These pointer variables are never used, so we can get rid of them.
2018-10-20svc: Fix vma boundary check in svcQueryMemoryLioncash
This should be comparing against the queried process' vma_map, not the current process'. The only reason this hasn't become an issue yet is we currently only handle one process being active at any time.
2018-10-20gl_shader_decompiler: Allow std::move to function in SetPredicateLioncash
If the variable being moved is const, then std::move will always perform a copy (since it can't actually move the data).
2018-10-20gl_shader_decompiler: Get rid of variable shadowing warningsLioncash
A variable with the same name was previously declared in an outer scope.
2018-10-20gl_shader_decompiler: Fix a few comment typosLioncash
2018-10-20gl_shader_decompiler: Move position varying declaration back to gl_shader_genReinUsesLisp
The intention of declaring them in gl_shader_decompiler was to be able to use blocks to implement geometry shaders. But that wasn't needed in the end and it caused issues when both vertex stages were being used, resulting in a redeclaration of "position".
2018-10-20Added auto controller switching to supported controllers and single joycon ↵David Marcec
button rotation This is a subset of the better-hid-2 changes, this fixes input in various games which don't support dual joycons. This pr will search for the next best controller which is supported by the current game
2018-10-19Merge pull request #1501 from ReinUsesLisp/half-floatbunnei
gl_shader_decompiler: Implement H* instructions
2018-10-19Merge pull request #1520 from lioncash/sanbunnei
svc: Add missing sanitizing checks for MapSharedMemory/UnmapSharedMemory
2018-10-19Merge pull request #1517 from bunnei/dmabunnei
GPU/DMA: Flush the source region and invalidate the destination region when doing a DMA transfer.
2018-10-19Merge pull request #1526 from lioncash/svc-idbunnei
service: Update function tables
2018-10-19Merge pull request #1530 from DarkLordZach/aoc-8bunnei
aoc_u: Stub GetAddOnContentListChangedEvent