| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2022-12-04 | externals: update dynarmic, SDL2 | Liam | |
| 2022-12-03 | Merge pull request #9344 from liamwhite/null | bunnei | |
| video_core: add null backend | |||
| 2022-12-03 | Merge pull request #9300 from ameerj/pch | liamwhite | |
| CMake: Use precompiled headers to improve compile times | |||
| 2022-12-03 | Merge pull request #9289 from liamwhite/fruit-company | liamwhite | |
| general: fix compile for Apple Clang | |||
| 2022-12-03 | Merge pull request #9353 from vonchenplus/draw_indexed | liamwhite | |
| video_core: Fine tuning the index drawing judgment logic | |||
| 2022-12-02 | Merge pull request #9303 from liamwhite/new-vulkan-init | Matías Locatti | |
| Vulkan: update initialization | |||
| 2022-12-01 | shader_recompiler: add gl_Layer translation GS for older hardware | Liam | |
| 2022-12-01 | video_core: Fine tuning the index drawing judgment logic | Feng Chen | |
| 2022-11-30 | vulkan_common: quiet some validation errors | Liam | |
| 2022-11-30 | CMake: Consolidate common PCH headers | ameerj | |
| 2022-11-30 | Respect render mode override | Kelebek1 | |
| 2022-11-29 | CMake: Use precompiled headers | ameerj | |
| 2022-11-29 | Merge pull request #9352 from lioncash/vidcast | liamwhite | |
| engines: Remove unnecessary casts | |||
| 2022-11-29 | host1x/syncpoint_manager: Eliminate unnecessary std::function construction | Lioncash | |
| We can just pass the function object through, and if it's a valid function, then it will automatically be converted. | |||
| 2022-11-29 | host1x/syncpoint_manager: Pass DeregisterAction() handle as const-ref | Lioncash | |
| The handle is only compared against and not modified in any way, so we can pass it by const reference. This also allows us to mark the respective parameters for DeregisterGuestAction() and DeregisterHostAction() as const references as well. | |||
| 2022-11-29 | maxwell_3d: Mark shifted value as unsigned | Lioncash | |
| Otherwise this is technically creating a signed int result that gets converted. Just a consistency change. While we're in the area, we can mark Samples() as const. | |||
| 2022-11-29 | engines: Remove unnecessary casts | Lioncash | |
| In a few cases we have some casts that can be trivially removed. | |||
| 2022-11-28 | video_core/surface: Eliminate casts in GetFormatType() | Lioncash | |
| We can just compare directly and get rid of verbose casting. | |||
| 2022-11-28 | video_core: add null backend | Liam | |
| 2022-11-27 | Vulkan: update initialization | Liam | |
| Co-authored-by: bylaws <bylaws@users.noreply.github.com> | |||
| 2022-11-27 | Merge pull request #9276 from goldenx86/fsrSlider | bunnei | |
| FSR Sharpening Slider | |||
| 2022-11-26 | Merge pull request #9288 from vonchenplus/deferred_draw | liamwhite | |
| video_core: Fine tune maxwell drawing trigger mechanism | |||
| 2022-11-26 | Merge pull request #9307 from Morph1984/not-used-correctly | liamwhite | |
| maxwell_to_vk: Fix format usage bits and add R16_SINT | |||
| 2022-11-24 | Merge pull request #9194 from FernandoS27/yfc-fermi2d | liamwhite | |
| YFC - Fermi2D: Rework blit engine and add a software blitter. | |||
| 2022-11-24 | Fermi2D: Cleanup and address feedback. | Fernando Sahmkow | |
| 2022-11-24 | GPU: Fix buffer cache issue, engine upload not inlining memory in multiline ↵ | Fernando Sahmkow | |
| and pessismistic invalidation. | |||
| 2022-11-24 | GPU: Implement additional render target formats. | Fernando Sahmkow | |
| 2022-11-24 | MaxwellDMA: Implement BlockLinear to BlockLinear copies. | Fernando Sahmkow | |
| 2022-11-24 | Fermi2D: Implement Bilinear software filtering and address feedback. | Fernando Sahmkow | |
| 2022-11-24 | Fermi2D: Rework blit engine and add a software blitter. | Fernando Sahmkow | |
| 2022-11-24 | FSR Sharpening Slider part 1 - only a global slider | Matías Locatti | |
| 2022-11-23 | maxwell_to_vk: Add R16_SINT | Morph | |
| This was somehow missed when the format was added to GL | |||
| 2022-11-23 | maxwell_to_vk: Fix format usage bits | Morph | |
| - VK_FORMAT_B8G8R8A8_UNORM supports the STORAGE_IMAGE_BIT - VK_FORMAT_R4G4B4A4_UNORM_PACK16 does not support the COLOR_ATTACHMENT_BIT | |||
| 2022-11-22 | general: fix compile for Apple Clang | Liam | |
| 2022-11-22 | video_core: Optimize maxwell drawing trigger mechanism | FengChen | |
| 2022-11-20 | Merge pull request #9216 from vonchenplus/reimp_inline_index_buffer | liamwhite | |
| video_core: Reimplement inline index buffer binding | |||
| 2022-11-20 | Merge pull request #9249 from goldenx86/available-vram | Morph | |
| Add available Vulkan VRAM to log files | |||
| 2022-11-19 | Merge pull request #9252 from liamwhite/radv-superiority | bunnei | |
| maxwell3d: HLE multi-layer clear macro | |||
| 2022-11-17 | Merge pull request #9229 from Docteh/achy_breaky_heart | Morph | |
| Add break for default cases | |||
| 2022-11-17 | maxwell3d: full HLE for multi-layer clears | Liam | |
| 2022-11-16 | maxwell3d: HLE multi-layer clear macro | Liam | |
| 2022-11-16 | Update renderer_vulkan.cpp | Matías Locatti | |
| 2022-11-15 | video_core: Reimplement inline index buffer binding | Feng Chen | |
| 2022-11-13 | Add break for default cases | Kyle Kienapfel | |
| Visual Studio has an option to search all files in a solution, so I did a search in there for "default:" looking for any missing break statements. I've left out default statements that return something, and that throw something, even if via ThrowInvalidType. UNREACHABLE leads towards throw R_THROW macro leads towards a return | |||
| 2022-11-12 | Merge pull request #9226 from Kelebek1/regs_regression | bunnei | |
| [video_core] Fix a couple regs regressions | |||
| 2022-11-11 | Merge pull request #9204 from vonchenplus/dma_copy_1d_random_crash | liamwhite | |
| video_core: Fix dma copy 1D random crash | |||
| 2022-11-11 | Merge pull request #9167 from vonchenplus/tess | liamwhite | |
| video_core: Fix few issues in Tess stage | |||
| 2022-11-11 | Fix regs regression with OpenGL two-sided stencil, and re-add data ↵ | Kelebek1 | |
| invalidation reg | |||
| 2022-11-11 | ir/texture_pass: Use host_info instead of querying Settings::values (#9176) | Morph | |
| 2022-11-11 | video_core: Fix dma copy 1D random crash | FengChen | |
