summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2019-09-21yuzu: Add UI to manage filesystem paths and sizesZach Hilman
2019-09-21core: Store FileSystemController in coreZach Hilman
2019-09-21settings: Add options for managing gamecard emulationZach Hilman
2019-09-21settings: Add options for setting storage sizesZach Hilman
2019-09-21yuzu: Port old usages of Filesystem namespace to FilesystemControllerZach Hilman
2019-09-21settings: Update LogSettings to show NAND/SDMC paths from FileUtilZach Hilman
2019-09-21card_image: Add accessors for gamecard certificateZach Hilman
Used by fsp-srv/IDeviceOperator
2019-09-21card_image: Add functions to query gamecard update partitionZach Hilman
Includes version and meta title ID, used by fsp-srv/IDeviceOperator
2019-09-21content_archive: Add accessors for Rights ID and SDK VersionZach Hilman
2019-09-21partition_data_manager: Add accessor for decrypted PRODINFO partitionZach Hilman
2019-09-21services: Pass FileSystemController as reference to services that need itZach Hilman
2019-09-21am: Unstub IApplicationFunctions EnsureSaveData (20)Zach Hilman
Creates a default save data for the application given a user ID.
2019-09-21filesystem: Pass Size Getter functions to IFileSystem for sizesZach Hilman
2019-09-21sdmc_factory: Add SD Card size gettersZach Hilman
2019-09-21bis_factory: Add getters for NAND partition sizesZach Hilman
2019-09-21filesystem: Add FileSystemController to deglobalize FS servicesZach Hilman
2019-09-21submisson_package: Fix edge case with improperly sized filenamesZach Hilman
Prevents a crash if the filename is less than 9 characters long.
2019-09-21sdmc_factory: Add accessor for SDMC Album directoryZach Hilman
2019-09-21sdmc_factory: Add accessor for SDMC PlaceholderCacheZach Hilman
2019-09-21sdmc_factory: Add accessor for content directoryZach Hilman
2019-09-21savedata_factory: Implement savedata creation and don't create dir on openZach Hilman
Matches hardware behavior and eliminates some nasty behavior we were doing that wasn't hw-accurate at all.
2019-09-21patch_manager: Add short-circuit edge-case to GetPatchVersionNamesZach Hilman
If title ID is 0, there are no add ons, prevents wasting time looking for them.
2019-09-21patch_manager: Add error checking to load dir to prevent crashesZach Hilman
Prevents a crash if the load dir would be nullptr, instead logs an error and returns appropriately.
2019-09-21registered_cache: Process *.cnmt.nca filesZach Hilman
Needed to use the RegisteredCache/PlaceholderCache on gamecards.
2019-09-21registered_cache: Implement PlaceholderCache to manage placeholder and ↵Zach Hilman
installing content
2019-09-21bis_factory: Fix mod loader edge-case with homebrew title IDsZach Hilman
Fixes a bug where homebrew that has a title ID with the update bit set can cause issues with the PatchManager
2019-09-21bis_factory: Add accessors for BIS placeholder cachesZach Hilman
2019-09-21bis_factory: Add accessor for NAND Image DirectoryZach Hilman
2019-09-21bis_factory: Add accessors for BIS content directoriesZach Hilman
2019-09-21bis_factory: Add accessors for BIS partitionsZach Hilman
2019-09-21Merge pull request #2885 from Hexagon12/port-4944David
Port citra-emu/citra#4944: "Added Host CPU and OS to log"
2019-09-21Added Host CPU and OS to logpbarilla
2019-09-21Merge pull request #2806 from FearlessTobi/port-4882David
Port citra-emu/citra#4882: "Add frametime logging for tracking performance over time"
2019-09-21Merge pull request #2872 from FernandoS27/mem-gpu-optDavid
Core/Memory: Only FlushAndInvalidate GPU if the page is marked as RasterizerCachedMemory
2019-09-21Merge pull request #2576 from DarkLordZach/nsp-fix-1David
nsp: Fix various errors with loading and processing of extracted NSPs
2019-09-21Merge pull request #2866 from Morph1984/checkbox_fixDavid
configure_input: Uncheck "Joycons Docked" when "Use Docked Mode" is checked
2019-09-21Merge pull request #2868 from ReinUsesLisp/fix-mipmapsDavid
maxwell_to_gl: Fix mipmap filtering
2019-09-21Merge pull request #2879 from ogniK5377/trace-submitgpfifoDavid
Mark KickOffPb & SubmitGPFIFO as trace
2019-09-21Mark DrawArrays as LOG_TRACEDavid Marcec
There's no reason to clog logs with DrawArray.
2019-09-21Mark KickOffPb & SubmitGPFIFO as traceDavid Marcec
These functions are not stubbed and are called fairly often. Due to the nature of how often they're called, we should keep them marked as LOG_TRACE instead of LOG_DEBUG or LOG_WARNING
2019-09-20Merge pull request #2846 from ReinUsesLisp/fixup-viewport-indexbunnei
gl_shader_decompiler: Avoid writing output attribute when unimplemented
2019-09-20Merge pull request #2855 from ReinUsesLisp/shflbunnei
shader_ir/warp: Implement SHFL for Nvidia devices
2019-09-18Core/Memory: Only FlushAndInvalidate GPU if the page is marked as ↵Fernando Sahmkow
RasterizerCachedMemory This commit avoids Invalidating and Flushing the GPU if the page is not marked as a RasterizerCache Page.
2019-09-18Merge pull request #2784 from ReinUsesLisp/smembunnei
shader_ir: Implement shared memory
2019-09-17shader_ir/warp: Implement SHFLReinUsesLisp
2019-09-17maxwell_to_gl: Fix mipmap filteringReinUsesLisp
OpenGL texture filters follow GL_<texture_filter>_MIPMAP_<mipmap_filter> but we were using them in the opposite way.
2019-09-16When docked mode is checked, uncheck "joycons docked"Morph
2019-09-15Merge pull request #2851 from ReinUsesLisp/srgbFernando Sahmkow
renderer_opengl: Fix sRGB blits
2019-09-15Merge pull request #2824 from ReinUsesLisp/mmeFernando Sahmkow
Revert "Revert #2466" and stub FirmwareCall 4
2019-09-14maxwell_3d: Update firmware 4 call stub commentaryRodrigo Locatti