| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Merge pull request #9596 from liamwhite/mvk | 2023-01-10 | 1 | -10/+25 | |
| |\ | | | | | MoltenVK: restrict number of vertex attributes/bindings to 16 | ||||
| | * | MoltenVK: restrict number of vertex attributes/bindings to 16 | 2023-01-09 | 1 | -10/+25 | |
| | | | |||||
| * | | vulkan_common: fix indirect draw with count | 2023-01-10 | 3 | -8/+15 | |
| |/ | |||||
| * | Merge pull request #9581 from liamwhite/turbo2 | 2023-01-09 | 5 | -0/+40 | |
| |\ | | | | | renderer_vulkan: pause turbo submissions on inactive queue | ||||
| | * | renderer_vulkan: pause turbo submissions on inactive queue | 2023-01-07 | 5 | -0/+40 | |
| | | | |||||
| * | | vulkan_device: refactor feature testing | 2023-01-09 | 3 | -1173/+664 | |
| | | | |||||
| * | | VideoCore: Fix OGL cache invalidation. | 2023-01-07 | 2 | -0/+6 | |
| |/ | |||||
| * | Merge pull request #9570 from liamwhite/less-clock-boost | 2023-01-07 | 3 | -1/+15 | |
| |\ | | | | | renderer_vulkan: disable clock boost on unvalidated devices | ||||
| | * | renderer_vulkan: disable clock boost on unvalidated devices | 2023-01-06 | 3 | -1/+15 | |
| | | | |||||
| * | | vulkan_device: avoid attempt to access empty optional | 2023-01-06 | 1 | -2/+6 | |
| |/ | |||||
| * | opengl: Sanitize antialiasing config | 2023-01-06 | 1 | -1/+7 | |
| | | |||||
| * | video_core/vulkan: Fixed loading of Vulkan driver pipeline cache | 2023-01-06 | 1 | -1/+2 | |
| | | | | | The header size of the Vulkan driver pipeline cache files was incorrectly in PipelineCache::LoadVulkanPipelineCache, for which the pipeline cache wasn't read correctly and got invalidated on each load. | ||||
| * | Merge pull request #9535 from bylaws/master | 2023-01-06 | 6 | -3/+25 | |
| |\ | | | | | Port over several shader-compiler fixes from skyline | ||||
| | * | Run clang-format | 2023-01-05 | 1 | -1/+2 | |
| | | | |||||
| | * | Vulkan, OpenGL: Hook up geometry shader passthrough emulation | 2023-01-05 | 2 | -0/+2 | |
| | | | |||||
| | * | Vulkan, OpenGL: Hook up storage buffer alignment code | 2023-01-05 | 6 | -3/+21 | |
| | | | |||||
| | * | Vulkan: Add a workaround for input_position on Adreno drivers | 2023-01-05 | 1 | -0/+1 | |
| | | | | | | | | | Adreno drivers will crash compiling geometry shaders if the input position is not wrapped in a gl_in struct. | ||||
| * | | Merge pull request #9552 from liamwhite/turbo | 2023-01-06 | 8 | -2/+274 | |
| |\ \ | | | | | | | vulkan: implement 'turbo mode' clock booster | ||||
| | * | | common: add setting for renderer clock workaround | 2023-01-04 | 1 | -1/+3 | |
| | | | | |||||
| | * | | vulkan: implement 'turbo mode' clock booster | 2023-01-04 | 8 | -2/+272 | |
| | | | | |||||
| * | | | Merge pull request #9559 from FernandoS27/cached-writes | 2023-01-06 | 13 | -51/+231 | |
| |\ \ \ | | | | | | | | | VideoCore: Implement Cached Writes, use fastmem for reading GPU memory and eliminate old stuffs | ||||
| | * | | | BufferBase: Don't ignore GPU pages. | 2023-01-05 | 7 | -22/+21 | |
| | | | | | |||||
| | * | | | Fermi2D: sync cache flushes | 2023-01-05 | 2 | -2/+5 | |
| | | | | | |||||
| | * | | | MemoryManager: use fastmem directly. | 2023-01-05 | 2 | -10/+33 | |
| | | | | | |||||
| | * | | | video_core: Cache GPU internal writes. | 2023-01-05 | 10 | -30/+185 | |
| | |/ / | |||||
| * | | | MacroHLE: eliminate 2 rushed macros. | 2023-01-05 | 1 | -42/+0 | |
| | | | | |||||
| * | | | Merge pull request #9528 from liamwhite/mvk-nulldesc | 2023-01-05 | 3 | -0/+19 | |
| |\ \ \ | | | | | | | | | renderer_vulkan: implement fallback path for null buffer descriptors | ||||
| | * | | | renderer_vulkan: implement fallback path for null descriptors | 2023-01-04 | 3 | -0/+19 | |
| | |/ / | |||||
| * | | | Merge pull request #9536 from liamwhite/debug-utils | 2023-01-05 | 3 | -11/+10 | |
| |\ \ \ | |_|/ |/| | | vulkan_common: unify VK_EXT_debug_utils and selection of validation layer | ||||
| | * | | vulkan_common: unify VK_EXT_debug_utils and selection of validation layer | 2023-01-01 | 3 | -11/+10 | |
| | | | | |||||
| * | | | video_core/vulkan: Vulkan driver pipelines now contain cache version | 2023-01-05 | 2 | -16/+28 | |
| | | | | | | | | | | | | | So that old cache can get deleted when the cache version changes and does not grow infinitely | ||||
| * | | | video_core/vulkan: Added check if Vulkan pipeline path has been set | 2023-01-05 | 1 | -1/+1 | |
| | | | | |||||
| * | | | video_core/vulkan: Added `VkPipelineCache` to store Vulkan pipelines | 2023-01-05 | 8 | -67/+226 | |
| | | | | | | | | | | | | | | | | | | | As an optional feature which can be enabled in the advanced graphics configuration, all pipelines that get built at the initial shader loading are stored in a VkPipelineCache object and are dumped to the disk. These vendor specific pipeline cache files are located at `/shader/GAME_ID/vulkan_pipelines.bin`. This feature was mainly added because of an issue with the AMD driver (see yuzu-emu#8507) causing invalidation of the cache files the driver builds automatically. | ||||
| * | | | Vulkan: Fix drivers that don't support dynamic_state_2 up | 2023-01-05 | 2 | -8/+11 | |
| | |/ |/| | |||||
| * | | yuzu-ui: Add setting for disabling macro HLE | 2023-01-04 | 1 | -4/+5 | |
| | | | |||||
| * | | Video_core: Address feedback | 2023-01-04 | 10 | -167/+304 | |
| | | | |||||
| * | | Texture Cache: Implement async texture downloads. | 2023-01-03 | 5 | -35/+91 | |
| | | | |||||
| * | | Vulkan: Update blacklisting to latest driver versions. | 2023-01-03 | 1 | -5/+12 | |
| | | | |||||
| * | | ShaderCompiler: Inline driver specific constants. | 2023-01-03 | 3 | -2/+5 | |
| | | | |||||
| * | | Vulkan: rework stencil tracking. | 2023-01-03 | 4 | -36/+169 | |
| | | | |||||
| * | | vulkan_common: blacklist radv from extended_dynamic_state2 on drivers before ↵ | 2023-01-01 | 2 | -2/+14 | |
| | | | | | | | | | 22.3.1 | ||||
| * | | video_core: fix build | 2023-01-01 | 4 | -3/+38 | |
| | | | |||||
| * | | MacroHLE: Final cleanup and fixes. | 2023-01-01 | 12 | -122/+88 | |
| | | | |||||
| * | | Rasterizer: Setup skeleton for Host Conditional rendering | 2023-01-01 | 6 | -10/+53 | |
| | | | |||||
| * | | RasterizerMemory: Add filtering for flushing/invalidation operations. | 2023-01-01 | 14 | -93/+186 | |
| | | | |||||
| * | | Vulkan: Allow stagging buffer deferrals. | 2023-01-01 | 2 | -21/+56 | |
| | | | |||||
| * | | MacroHLE: Add OpenGL Support | 2023-01-01 | 4 | -38/+94 | |
| | | | |||||
| * | | Vulkan: Add other additional pipeline specs | 2023-01-01 | 1 | -1/+17 | |
| | | | |||||
| * | | Vulkan: Implement Dynamic State 3 | 2023-01-01 | 13 | -105/+313 | |
| | | | |||||
| * | | Vulkan Implement Dynamic State 2 LogicOp and PatchVertices | 2023-01-01 | 12 | -27/+75 | |
| | | | |||||