summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-10-28Assert Control Flow Instructions using Control CodesFernandoS27
2018-10-28Merge pull request #1607 from FearlessTobi/patch-3bunnei
renderer_opengl: Correct bpp value for ASTC_2D_8X5
2018-10-28Correct bpp value for ASTC_2D_8X5Tobias
2018-10-28Merge pull request #1601 from FernandoS27/shader-precisionbunnei
Improved Shader accuracy on Vertex and Geometry Shaders.
2018-10-28Merge pull request #1606 from FearlessTobi/revert-1581-macosx-target-versionbunnei
Revert "Update MACOSX_DEPLOYMENT_TARGET to 10.14"
2018-10-28Refactor precise usage and add FMNMX, MUFU, FMUL32 and FADD332FernandoS27
2018-10-28Revert "Update MACOSX_DEPLOYMENT_TARGET to 10.14"Tobias
2018-10-28Merge pull request #1593 from lioncash/svcbunnei
svc: Implement svcGetInfo command 0xF0000002
2018-10-28Merge pull request #1581 from FreddyFunk/macosx-target-versionbunnei
Update MACOSX_DEPLOYMENT_TARGET to 10.14
2018-10-28file_sys/patch_manager: Remove unnecessary if-statements (#1586)Frederic L
* remove unnecessary if-statements * Addressed feedback
2018-10-28Merge pull request #1598 from DeeJayBro/delete-directorybunnei
service/filesystem: Implemented DeleteDirectory & DeleteDirectoryRecursive
2018-10-28Merge pull request #1600 from DarkLordZach/nsp-secondary-loader-fixbunnei
loader/nsp: Move secondary loader initialization to constructor
2018-10-28Merge pull request #1582 from Tinob/masterbunnei
Implement sRGB support
2018-10-28Implement sRGB Support, including workarounds for nvidia driver issues and ↵Rodolfo Bogado
QT sRGB support
2018-10-27Merge pull request #1602 from DarkLordZach/key-derivation-isxdigitbunnei
key_manager: Use isxdigit instead of isdigit when reading key file
2018-10-27key_manager: Use isxdigit instead of isdigit when reading key fileZach Hilman
Crypto revisions are hex numbers and this function only checks if the string is valid for stoul in base 16, so it should be isxdigit.
2018-10-27Merge pull request #1597 from lioncash/errorbunnei
configure_system: Indicate when filesystem operations fail
2018-10-27Merge pull request #1594 from FreddyFunk/static-castbunnei
gl_rasterizer_cache: Fix compiler warning
2018-10-27Improved Shader accuracy on Vertex and Geometry Shaders with FFMA, FMUL and FADDFernandoS27
2018-10-27Merge pull request #1596 from FearlessTobi/port-4367bunnei
Port citra-emu/citra#4367: "cubeb_sink: ignore null-name device when selecting"
2018-10-27Merge pull request #1592 from bunnei/prim-restartbunnei
gl_rasterizer: Implement primitive restart.
2018-10-27Merge pull request #1599 from FernandoS27/stalematebunnei
Implement Default Block Height for each format
2018-10-27Implement Default Block Height for each formatFernandoS27
2018-10-27loader/nsp: Move secondary loader initialization to constructorZach Hilman
Prevents nullptr bug when trying to dump the RomFS of an NSP resulting from secondary_loader not being initialized.
2018-10-27gl_rasterizer_cache: Fix compiler warningFrederic Laing
2018-10-27service/filesystem: Add DirectoryDelete & DirectoryDeleteRecursivelyDeeJayBro
2018-10-27configure_system: Make GetIcon() return the scaled 64x64 iconLioncash
Avoids the need to put the scaling parameters all over the place for the common case. The only other time scaling is done is to generate the smaller 48x48 image, so this is fine.
2018-10-27configure_system: Move entry formatting for the user account list entries to ↵Lioncash
its own function Avoids the need to duplicate this all over the place, and makes it translator-friendly across the board.
2018-10-27configure_system: Display errors to the user if file operations fail when ↵Lioncash
setting user images We should display an error to the user if setting a user image for an account fails, rather than continuing onwards.
2018-10-27cubeb_sink: ignore null-name device when selectingWeiyi Wang
We already ignore them on listing devices. We should do the same when selecting devices. This fix a crash when opening a specific device while there is a null device in the list
2018-10-26svc: Localize the GetInfo enum class to the function itselfLioncash
Nothing from this enum is intended to be used outside of this function.
2018-10-26svc: Implement svcGetInfo command 0xF0000002Lioncash
This retrieves: if (curr_thread == handle_thread) { result = total_thread_ticks + (hardware_tick_count - last_context_switch_ticks); } else if (curr_thread == handle_thread && sub_id == current_core_index) { result = hardware_tick_count - last_context_switch_ticks; }
2018-10-26gl_rasterizer: Implement primitive restart.bunnei
2018-10-26Merge pull request #1533 from FernandoS27/lmembunnei
Implemented Shader Local Memory
2018-10-26Merge pull request #1430 from DarkLordZach/remove-promote-dirbunnei
vfs: Remove InterpretAsDirectory and related functions
2018-10-26Merge pull request #1591 from bunnei/depth-rangebunnei
gl_rasterizer: Implement depth range.
2018-10-25maxwell_3d: Add code for initializing register defaults.bunnei
2018-10-25Merge pull request #1569 from lioncash/amiibobunnei
yuzu/main: Notify user of loading errors with Amiibo data
2018-10-25Merge pull request #1587 from lioncash/privatebunnei
configure_system: Minor cleanup-related changes
2018-10-25Merge pull request #1557 from bunnei/ldr_robunnei
Implement the LoadNro functions from the ldr:ro service.
2018-10-25gl_rasterizer: Implement depth range.bunnei
2018-10-25ldr: Partially implement LoadNro.bunnei
- This is an incomplete implementation. It was tested with Super Mario Party.
2018-10-25process: LoadModule should clear JIT instruction cache.bunnei
2018-10-25Kernel/Memory: Added a function to first a suitable guest address at which ↵bunnei
to allocate a region of a given size.
2018-10-25nro: Make LoadNro method accessible outside of apploader code.bunnei
2018-10-25Merge pull request #1583 from DarkLordZach/rle-sizeMat M
ips_layer: Use rle_size instead of data_size in RLE patch application
2018-10-25configure_system: Make the file selector text translatableLioncash
This should be localizable, since it's user-facing text.
2018-10-25configure_system: Make GetAccountUsername() an internal functionLioncash
We can just make the function accept an arbitrary ProfileManager reference and operate on that instead of tying the function to the class itself. This allows us to keep the function internal to the cpp file and removes the need to forward declare the UUID struct.
2018-10-25configure_system: Default initialize member variablesLioncash
These should be initialized to deterministic values so it's easier to catch improper behavior, as it'll always be reproducable, instead of performing uninitialized reads.
2018-10-25configure_system: Simplify UUID generation call in AddUser()Lioncash
This is a static function so we can just perform an assignment directly.