| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2023-08-06 | minor redundancy cleanup | Ameer J | |
| 2023-08-06 | extractbits robustness | Ameer J | |
| 2023-08-06 | reuse vectors memory | Ameer J | |
| 2023-08-06 | EncodingData pack | Ameer J | |
| 2023-08-06 | flattening | Ameer J | |
| 2023-08-06 | weights refactor | Ameer J | |
| 2023-08-06 | params.max_weight | Ameer J | |
| 2023-08-06 | skip bits | Ameer J | |
| 2023-08-06 | restrict | Ameer J | |
| 2023-08-05 | Merge pull request #11212 from Kelebek1/shader_stuff | liamwhite | |
| Fix various misc pipeline/shader things | |||
| 2023-08-03 | Fix shader dumps with nvdisasm | Kelebek1 | |
| skip fragment shaders when rasterizer is disabled initialize env_ptrs | |||
| 2023-08-02 | vulkan_device: Fix subgroup_size_control detection on Vulkan 1.3 | Ameer J | |
| 2023-08-02 | vulkan_device: Fix VK_EXT_subgroup_size_control detection | Ameer J | |
| 2023-08-02 | Merge pull request #11202 from abouvier/vulkan-config | liamwhite | |
| vulkan: centralize config | |||
| 2023-08-02 | Merge pull request #10839 from lat9nq/pgc-plus | liamwhite | |
| general: Reimplement per-game configurations | |||
| 2023-08-01 | vulkan_device: disable EDS3 blending on all AMD drivers | Liam | |
| 2023-08-02 | vulkan: centralize config | Alexandre Bouvier | |
| 2023-07-31 | Merge pull request #11188 from abouvier/vma-fix | liamwhite | |
| vma: enable options everywhere | |||
| 2023-07-31 | Merge pull request #11169 from GPUCode/desc-stuff | liamwhite | |
| vk_descriptor_pool: Disallow descriptor set free | |||
| 2023-07-31 | vma: enable options everywhere | Alexandre Bouvier | |
| 2023-07-30 | Formatting fix | Moonlacer | |
| 2023-07-30 | Match log warning | Moonlacer | |
| 2023-07-30 | Formatting fix | Moonlacer | |
| 2023-07-30 | Address feedback and change log warning | Moonlacer | |
| 2023-07-30 | Revert "Revert "Blacklist EDS3 blending from new AMD drivers"" | Moonlacer | |
| 2023-07-27 | vk_descriptor_pool: Disallow descriptor set free | GPUCode | |
| 2023-07-26 | Revert "Blacklist EDS3 blending from new AMD drivers" | Moonlacer | |
| 2023-07-26 | Merge pull request #10990 from comex/ubsan | liamwhite | |
| Fixes and workarounds to make UBSan happier on macOS | |||
| 2023-07-22 | Merge pull request #11098 from GPUCode/texel-buffers | liamwhite | |
| buffer_cache: Increase number of texture buffers | |||
| 2023-07-21 | settings,opengl,yuzu-qt: Fix AA, Filter maximums | lat9nq | |
| The new enum macros don't support setting values directly. For LastAA and LastFilter, this means we need a simpler approach to loop around the toggle in the frontend... | |||
| 2023-07-21 | settings,general: Rename non-confirming enums | lat9nq | |
| 2023-07-21 | configure_graphics_advance: Generate UI at runtime | lat9nq | |
| We can iterate through the AdvancedGraphics settings and generate the UI during runtime. This doesn't help runtime efficiency, but it helps a ton in reducing the amount of work a developer needs in order to add a new setting. | |||
| 2023-07-21 | settings,video_core: Consolidate ASTC decoding options | lat9nq | |
| Just puts them all neatly into one place. | |||
| 2023-07-18 | vk_buffer_cache: Format | lat9nq | |
| 2023-07-18 | general: Silence -Wshadow{,-uncaptured-local} warnings | lat9nq | |
| These occur in the latest commits in LLVM Clang. | |||
| 2023-07-15 | buffer_cache: Increase number of texture buffers | GPUCode | |
| 2023-07-15 | Fixes and workarounds to make UBSan happier on macOS | comex | |
| There are still some other issues not addressed here, but it's a start. Workarounds for false-positive reports: - `RasterizerAccelerated`: Put a gigantic array behind a `unique_ptr`, because UBSan has a [hardcoded limit](https://stackoverflow.com/questions/64531383/c-runtime-error-using-fsanitize-undefined-object-has-a-possibly-invalid-vp) of how big it thinks objects can be, specifically when dealing with offset-to-top values used with multiple inheritance. Hopefully this doesn't have a performance impact. - `QueryCacheBase::QueryCacheBase`: Avoid an operation that UBSan thinks is UB even though it at least arguably isn't. See the link in the comment for more information. Fixes for correct reports: - `PageTable`, `Memory`: Use `uintptr_t` values instead of pointers to avoid UB from pointer overflow (when pointer arithmetic wraps around the address space). - `KScheduler::Reload`: `thread->GetOwnerProcess()` can be `nullptr`; avoid calling methods on it in this case. (The existing code returns a garbage reference to a field, which is then passed into `LoadWatchpointArray`, and apparently it's never used, so it's harmless in practice but still triggers UBSan.) - `KAutoObject::Close`: This function calls `this->Destroy()`, which overwrites the beginning of the object with junk (specifically a free list pointer). Then it calls `this->UnregisterWithKernel()`. UBSan complains about a type mismatch because the vtable has been overwritten, and I believe this is indeed UB. `UnregisterWithKernel` also loads `m_kernel` from the 'freed' object, which seems to be technically safe (the overwriting doesn't extend as far as that field), but seems dubious. Switch to a `static` method and load `m_kernel` in advance. | |||
| 2023-07-12 | cmake: allow using system VMA library | Alexandre Bouvier | |
| 2023-07-10 | Merge pull request #10996 from Kelebek1/readblock_optimisation | bunnei | |
| Use spans over guest memory where possible instead of copying data | |||
| 2023-07-05 | Merge pull request #10994 from liamwhite/ue4-preferred | liamwhite | |
| vulkan_common: use device local preferred for image memory | |||
| 2023-07-05 | Merge pull request #11012 from gidoly/metroid-fix | liamwhite | |
| Fix regression by unreal engine fix pr #11009 | |||
| 2023-07-03 | video_core: vulkan_device: Disable timeline semaphore on Turnip, fix qcom ↵ | bunnei | |
| version check. | |||
| 2023-07-03 | Merge pull request #10964 from bunnei/gpu-remove-qcom-check | bunnei | |
| video_core: vulkan_device: Fix S8Gen2 dynamic state checks. | |||
| 2023-07-03 | video_core: vulkan_device: Change to driver version check. | bunnei | |
| 2023-07-03 | oops re open | gidoly | |
| 2023-07-02 | Use spans over guest memory where possible instead of copying data. | Kelebek1 | |
| 2023-07-02 | Merge pull request #10479 from GPUCode/format-list | liamwhite | |
| Add support for VK_KHR_image_format_list | |||
| 2023-07-02 | Merge pull request #10942 from FernandoS27/android-is-a-pain-in-the-a-- | liamwhite | |
| Memory Tracking: Add mechanism to register small writes when gpu page is contested by GPU | |||
| 2023-07-01 | vulkan_common: use device local preferred for image memory | Liam | |
| 2023-07-01 | Revert "texture_cache: Fix incorrect logic for AccelerateDMA" | Liam | |
| This reverts commit 1fc47361a12afd91d8ea0b76378e0b3d4feb93a6. | |||
