aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-09-06Merge pull request #6977 from Moonlacer/masterAmeer J
Second part of Golden's PR #6976
2021-09-06Merge pull request #6976 from goldenx86/patch-2Ameer J
Rename all shader cache strings to pipeline cache
2021-09-07Fix blend equation enum errorFeng Chen
2021-09-06Second part of Golden's PRMoonlacer
2021-09-06Rename all shader cache references to pipeline cacheMatías Locatti
After Hades, both OpenGL and Vulkan use a pipeline cache instead of single stages of the graphics pipeline. Renamed the Remove menu entries to match.
2021-09-06address name shadowing with systemChloe Marcec
2021-09-06account: EnsureTokenIdCacheAsyncChloe Marcec
Closes #2547, #6946
2021-09-06Merge pull request #6965 from bunnei/cpu_manager_jthreadbunnei
core: cpu_manager: Use jthread.
2021-09-06FS: Recursively create directories for CreateDirectoryChloe Marcec
Originally we only created the parent directory, this caused issues for creating directories which also contained subdirectories, eg `/Folder1/Folder2` This allows the ultimate mod manager homebrew to at least boot
2021-09-06Dynamic get unused locationFeng Chen
2021-09-06Implement intput and output fixed fnc texturesFeng Chen
2021-09-04core: hle: service: buffer_queue: Improve management of KEvent.bunnei
2021-09-04Merge pull request #6968 from bunnei/nvflinger-eventbunnei
core: hle: service: nvflinger/vi: Improve management of KEvent.
2021-09-03core: hle: service: nvflinger/vi: Improve management of KEvent.bunnei
2021-09-03core: cpu_manager: Use jthread.bunnei
2021-09-03Rename parametersFeng Chen
2021-09-03Fix create GraphicsPipelines crashFeng Chen
2021-09-02renderer_vulkan: Wait on present semaphore at queue submitameerj
The present semaphore is being signalled by the call to acquire the swapchain image. This semaphore is meant to be waited on when rendering to the swapchain image. Currently it is waited on when presenting, but moving its usage to be waited on in the command buffer submission allows for proper usage of this semaphore. Fixes the device lost when launching titles on the Intel Linux Mesa driver.
2021-09-02Add input/output locationFeng Chen
2021-09-01Merge pull request #6900 from ameerj/attr-reorderbunnei
structured_control_flow: Add DemoteCombinationPass
2021-09-01Merge pull request #6951 from german77/logMai M
common/logging: Add missing include
2021-09-01common/logging: Add missing includegerman77
2021-08-31emit_glsl_warp: Fix shuffle ops for 64-thread warp sizesameerj
2021-08-31emit_glsl_warp: Fix ballot related ops for 64-thread warp sizesameerj
2021-08-31emit_spirv_warp: Fix shuffle ops for 64-thread warp sizesameerj
2021-08-31emit_spirv_warp: Fix ballot related ops for 64-thread warp sizesameerj
2021-08-31Merge pull request #6897 from FernandoS27/pineapple-does-not-belong-in-pizzabunnei
Project <tentative title>: Rework Garbage Collection.
2021-09-01Add colorfront and txtcoord supportFeng Chen
2021-08-30Merge pull request #6928 from ameerj/spirv-get-frontfacebunnei
emit_spirv_context_get_set: Fix Get FrontFace return value
2021-08-30Merge pull request #6879 from ameerj/decoder-assertbunnei
vk_blit_screen: Fix non-accelerated texture size calculation
2021-08-30structured_control_flow: Skip reordering nested demote branches.ameerj
Nested demote branches add complexity with combining the condition if it has not been initialized yet. Skip them for the time being.
2021-08-30structured_control_flow: Conditionally invoke demote reorder passameerj
This is only needed on select drivers when a fragment shader discards/demotes.
2021-08-29Garbage Collection: Make it more agressive on high priority mode.Fernando Sahmkow
2021-08-29Garbage Collection: Adress Feedback.Fernando Sahmkow
2021-08-29Merge pull request #6905 from Morph1984/nifm-miscbunnei
nifm/network_interface: Cleanup and populate fields in GetCurrentNetworkProfile
2021-08-29vulkan_device: Enable VK_KHR_swapchain_mutable_format if availableameerj
Silences validation errors when creating sRGB image views of linear swapchain images
2021-08-29vk_swapchain: Prefer linear swapchain format when presenting sRGB imagesameerj
Fixes broken sRGB when presenting from a secondary GPU.
2021-08-28Merge pull request #6921 from ameerj/vp9-unusedbunnei
vp9_types: Remove unusued VP9 info struct members
2021-08-28Merge pull request #6927 from german77/ngctMorph
ngct: Stub NGCT:U service
2021-08-28Garbage Collection: enable as default, eliminate option.Fernando Sahmkow
2021-08-28VideoCore: Rework Garbage Collection.Fernando Sahmkow
2021-08-28structured_control_flow: Add DemoteCombinationPassameerj
Some drivers misread data when demotes are interleaved in the program. This moves demote branches to be checked at the end of the program. Fixes "wireframe" issue in Pokemon SwSh on some drivers
2021-08-27ngct: Stub NGCT:U servicegerman77
2021-08-27Merge pull request #6929 from ↵bunnei
yuzu-emu/revert-6870-trace-back-stack-back-stack-back Revert "logging: Display backtrace on crash"
2021-08-27Revert "logging: Display backtrace on crash"Morph
2021-08-27service: nifm: Populate fields in GetCurrentNetworkProfileMorph
Populates the current_address, subnet_mask, and gateway fields from the selected network interface.
2021-08-27service: nifm: Cleanup GetCurrentIpConfigInfoMorph
2021-08-27network_interface: Cleanup codeMorph
2021-08-27network_interface: Replace default return value with std::nulloptMorph
2021-08-26emit_spirv_context_get_set: Fix Get FrontFace return valueameerj
The IR expects GetAttribute to return an F32 value. This case was returning a U32 instead.