aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-10-29Merge pull request #1617 from FearlessTobi/fix-stretch-delaybunnei
time_stretch: Switch to values of Citra
2018-10-29Handle missing git info when buildingMichał Janiszewski
2018-10-29ns: Implement command 400: GetApplicationControlDataZach Hilman
Returns the raw NACP bytes and the raw icon bytes into a title-provided buffer. Pulls from Registration Cache for control data, returning all zeros should it not exist.
2018-10-29patch_manager: Add support for dumping decompressed NSOsZach Hilman
When enabled in settings, PatchNSO will dump the unmodified NSO that it was passed to a file named <build id>.nso in the dump root for the current title ID.
2018-10-29settings: Add setting to control NSO dumpingZach Hilman
Also adds UI option in Debug > Dump section, with the idea later things to be dumped (i.e. other game data or textures, etc) will use the same group box.
2018-10-29bis_factory: Add getter for mod dump root for a title IDZach Hilman
Equates to yuzu_dir/dump/<title id>/
2018-10-29fsp_srv: Implement ISaveDataInfoReaderZach Hilman
An object to read SaveDataInfo objects, which describe a unique save on the system. This implementation iterates through all the directories in the save data space and uses the paths to reconstruct the metadata.
2018-10-29fsp_srv: Implement command 61: OpenSaveDataInfoReaderBySaveDataSpaceIdZach Hilman
Needed by Checkpoint. Returns an object that can iterate through all savedata on the system.
2018-10-29savedata_factory: Expose accessors for SaveDataSpaceZach Hilman
2018-10-29loader/nro: Call RegisterRomFS from LoadZach Hilman
Allows NRO homebrew to use the RomFS in the ASET section.
2018-10-29control_metadata: Add GetRawBytes function to NACPZach Hilman
Returns the raw bytes of the NACP file. Needed for GetApplicationControlData which returns the raw, unprocessed NACP to the game.
2018-10-29Merge pull request #1613 from ReinUsesLisp/gl-utilsbunnei
video_core: Move OpenGL specific utils to its renderer
2018-10-29time_stretch: Switch to values of CitrafearlessTobi
2018-10-28Merge pull request #1610 from slashiee/dxt1-alphabunnei
renderer_opengl: Enable alpha channel for DXT1 texture format
2018-10-28Merge pull request #1612 from Tinob/masterbunnei
renderer_opengl: Correct bpp value for ASTC_2D_8X5_SRGB
2018-10-28video_core: Move OpenGL specific utils to its rendererReinUsesLisp
2018-10-28renderer_opengl: Correct bpp value for ASTC_2D_8X5_SRGBRodolfo Bogado
2018-10-28Assert Control Flow Instructions using Control CodesFernandoS27
2018-10-28Fixed black textures, pixelation and we no longer require to auto-generate ↵FernandoS27
mipmaps
2018-10-28Fixed mipmap block autosizing algorithmFernandoS27
2018-10-28Fixed Invalid Image size and Mipmap calculationFernandoS27
2018-10-28Fixed Block Resizing algorithm and Clang FormatFernandoS27
2018-10-28Implement Mip FilterFernandoS27
2018-10-28Zero out memory region of recreated surface before flushingFernandoS27
2018-10-28Implement MipmapsFernandoS27
2018-10-28core: Make System references const where applicableLioncash
2018-10-28core: Add missing const variants of getters for the System classLioncash
Many of the Current<Thing> getters (as well as a few others) were missing const qualified variants, which makes it a pain to retrieve certain things from const qualified references to System.
2018-10-28Enable alpha channel for DXT1 texture formatMichael
2018-10-28Merge pull request #1607 from FearlessTobi/patch-3bunnei
renderer_opengl: Correct bpp value for ASTC_2D_8X5
2018-10-28configure_system: Fix compiler warningFrederic Laing
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-28compatdb: Use a seperate endpoint for testcase submissionfearlessTobi
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.