Age | Commit message (Collapse) | Author |
|
We can just call the function instead of duplicating the code here. This
also prevents an unused function warning.
We also don't need to take the lambda capture by reference. It's just a
u64 value, so by value is fine here.
|
|
Added break types to svcBreak
|
|
* Fixed conflict with nfp
* Few fixups for nfc
* Conflict 2
* Fixed AttachAvailabilityChangeEvent
* Conflict 3
* Fixed byte padding
* Refactored amiibo to not reside in "System"
* Removed remaining references of nfc from system
* used enum for Nfc GetStateOld
* Added missing newline
* Moved file operations to front end
* Conflict 4
* Amiibos now use structs and added mutexes
* Removed amiibo_path
|
|
patch_manager: Add support for LayeredFS on DLC RomFS
|
|
CMakeLists: Use PROJECT_SOURCE_DIR instead of CMAKE_SOURCE_DIR
|
|
common: Remove memory_util.h/.cpp
|
|
kernel/process: Make the handle table per-process
|
|
Everything from here is completely unused and also written with the
notion of supporting 32-bit architecture variants in mind. Given the
Switch itself is on a 64-bit architecture, we won't be supporting 32-bit
architectures. If we need specific allocation functions in the future,
it's likely more worthwhile to new functions for that purpose.
|
|
Port citra-emu/citra#4336: "Only redefine some 64-bit file operation for MSVC"
|
|
gl_shader_decompiler: Implement VSETP
|
|
maxwell_dma: Silence compilation warnings
|
|
Implemented Alpha Test using Shader Emulation
|
|
MinGW provides POSIX functions
|
|
|
|
|
|
|
|
There seems to be more such as type 1, and 2. Unsure what these currently are but when a game hits them we can investigate and add the rest
|
|
gl_shader_decompiler: Implement PBK and BRK
|
|
Added Saturation to FMUL32I
|
|
CMakeLists: Use target_compile_definitions instead of add_definitions to define YUZU_ENABLE_COMPATIBILITY_REPORTING
|
|
gl_shader_decompiler: Minor changes
|
|
|
|
|
|
psm: Add psm service and stub commands 0 and 1
|
|
|
|
|
|
|
|
|
|
|
|
web_service/CMakeLists: Make the CPPHTTPLIB_OPENSSL_SUPPORT constrained to the web_service library only
|
|
svc: Fix vma boundary check in svcQueryMemory
|
|
Fixed FSETP and FSET
|
|
|
|
service: Update service function tables
|
|
Fixed VAOs Float types only returning GL_FLOAT
|
|
return GL_HALF_FLOAT
|
|
Used by LovePotion Lua Homebrew. Stubbed as connected to official Nintendo Switch dock.
|
|
qt: Move Reinitialize Keys to Tools menu
|
|
|
|
Updated based off information provided by Switchbrew.
|
|
Added based off information provided by Switchbrew.
|
|
Updated based off information from Switchbrew
|
|
Also introduces the new prepo:a2 service.
Updated based off information provided by Switchbrew.
|
|
Updated based off information provided by Switchbrew.
|
|
Added auto controller switching to supported controllers and single joycon button rotation
|
|
|
|
Used by LovePotion Lua Homebrew. Stubbed to return 100% charge.
|
|
Seems to be the power controller. Listed in switchbrew under the category PTM services.
|
|
This is more localized to what we want to enforce directory-wise with
the project. CMAKE_SOURCE_DIR indicates the root of the source tree, but
this would cause the wrong behavior if someone included yuzu as part of
a larger buildsystem (for whatever reason). Instead, we want to use the
directory where the "project(yuzu)" command was declared as the root
path reference.
|
|
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.
|