Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-10-23 | Merge pull request #1539 from lioncash/dma | bunnei | |
maxwell_dma: Silence compilation warnings | |||
2018-10-23 | Merge pull request #1470 from FernandoS27/alpha_testing | bunnei | |
Implemented Alpha Test using Shader Emulation | |||
2018-10-23 | Merge pull request #1512 from ReinUsesLisp/brk | bunnei | |
gl_shader_decompiler: Implement PBK and BRK | |||
2018-10-22 | Merge pull request #1550 from FernandoS27/fmul32 | bunnei | |
Added Saturation to FMUL32I | |||
2018-10-22 | Merge pull request #1543 from lioncash/target | bunnei | |
CMakeLists: Use target_compile_definitions instead of add_definitions to define YUZU_ENABLE_COMPATIBILITY_REPORTING | |||
2018-10-22 | Merge pull request #1537 from lioncash/shader | bunnei | |
gl_shader_decompiler: Minor changes | |||
2018-10-22 | Added Saturation to FMUL32I | FernandoS27 | |
2018-10-22 | Assert that multiple render targets are not set while alpha testing | FernandoS27 | |
2018-10-22 | Merge pull request #1545 from DarkLordZach/psm | bunnei | |
psm: Add psm service and stub commands 0 and 1 | |||
2018-10-22 | Use standard UBO and fix/stylize the code | FernandoS27 | |
2018-10-22 | Cache uniform locations and restructure the implementation | FernandoS27 | |
2018-10-22 | Remove SyncAlphaTest and clang format | FernandoS27 | |
2018-10-22 | Added Alpha Func | FernandoS27 | |
2018-10-22 | Implemented Alpha Testing | FernandoS27 | |
2018-10-22 | Merge pull request #1541 from lioncash/define | bunnei | |
web_service/CMakeLists: Make the CPPHTTPLIB_OPENSSL_SUPPORT constrained to the web_service library only | |||
2018-10-22 | Merge pull request #1538 from lioncash/query | bunnei | |
svc: Fix vma boundary check in svcQueryMemory | |||
2018-10-22 | Merge pull request #1547 from FernandoS27/fix-fset | bunnei | |
Fixed FSETP and FSET | |||
2018-10-22 | Fixed FSETP and FSET | FernandoS27 | |
2018-10-22 | Merge pull request #1546 from lioncash/svc-again | bunnei | |
service: Update service function tables | |||
2018-10-22 | Merge pull request #1548 from FernandoS27/fix-vao | bunnei | |
Fixed VAOs Float types only returning GL_FLOAT | |||
2018-10-22 | Fixed VAOs Float types only returning GL_FLOAT in cases that they had to ↵ | FernandoS27 | |
return GL_HALF_FLOAT | |||
2018-10-21 | psm: Stub GetChargerType | Zach Hilman | |
Used by LovePotion Lua Homebrew. Stubbed as connected to official Nintendo Switch dock. | |||
2018-10-21 | Merge pull request #1544 from DarkLordZach/reinitialize-keys-tools | bunnei | |
qt: Move Reinitialize Keys to Tools menu | |||
2018-10-21 | service: Add the basic skeleton for the NPNS services | Lioncash | |
2018-10-21 | hid: Update service function table for hidbus | Lioncash | |
Updated based off information provided by Switchbrew. | |||
2018-10-21 | am: Add the basic skeleton for the tcap service | Lioncash | |
Added based off information provided by Switchbrew. | |||
2018-10-21 | am: Update service function tables | Lioncash | |
Updated based off information from Switchbrew | |||
2018-10-21 | prepo: Update service function table. | Lioncash | |
Also introduces the new prepo:a2 service. Updated based off information provided by Switchbrew. | |||
2018-10-21 | lbl: Update service function table names | Lioncash | |
Updated based off information provided by Switchbrew. | |||
2018-10-20 | Merge pull request #1531 from ogniK5377/hid-fixes | bunnei | |
Added auto controller switching to supported controllers and single joycon button rotation | |||
2018-10-20 | qt: Move Reinitialize Keys to Tools menu | Zach Hilman | |
2018-10-20 | psm: Stub GetBatteryChargePercentage | Zach Hilman | |
Used by LovePotion Lua Homebrew. Stubbed to return 100% charge. | |||
2018-10-20 | service: Add skeleton for psm service | Zach Hilman | |
Seems to be the power controller. Listed in switchbrew under the category PTM services. | |||
2018-10-20 | CMakeLists: 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-20 | web_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-20 | engines/maxwell_*: Use nested namespace specifiers where applicable | Lioncash | |
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-20 | maxwell_dma: Make variables const where applicable within HandleCopy() | Lioncash | |
These are never modified, so we can make that assumption explicit. | |||
2018-10-20 | maxwell_dma: Make FlushAndInvalidate's size parameter a u64 | Lioncash | |
This prevents truncation warnings at the lambda's usage sites. | |||
2018-10-20 | maxwell_dma: Remove unused variables in HandleCopy() | Lioncash | |
These pointer variables are never used, so we can get rid of them. | |||
2018-10-20 | svc: Fix vma boundary check in svcQueryMemory | Lioncash | |
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-20 | gl_shader_decompiler: Allow std::move to function in SetPredicate | Lioncash | |
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-20 | gl_shader_decompiler: Get rid of variable shadowing warnings | Lioncash | |
A variable with the same name was previously declared in an outer scope. | |||
2018-10-20 | gl_shader_decompiler: Fix a few comment typos | Lioncash | |
2018-10-20 | gl_shader_decompiler: Move position varying declaration back to gl_shader_gen | ReinUsesLisp | |
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-20 | Added 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-19 | Merge pull request #1501 from ReinUsesLisp/half-float | bunnei | |
gl_shader_decompiler: Implement H* instructions | |||
2018-10-19 | Merge pull request #1520 from lioncash/san | bunnei | |
svc: Add missing sanitizing checks for MapSharedMemory/UnmapSharedMemory | |||
2018-10-19 | Merge pull request #1517 from bunnei/dma | bunnei | |
GPU/DMA: Flush the source region and invalidate the destination region when doing a DMA transfer. | |||
2018-10-19 | Merge pull request #1526 from lioncash/svc-id | bunnei | |
service: Update function tables | |||
2018-10-19 | Merge pull request #1530 from DarkLordZach/aoc-8 | bunnei | |
aoc_u: Stub GetAddOnContentListChangedEvent |