Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-07-02 | android: Version the input overlay | Charles Lombardo | |
Now within the Input Overlay file, there is a version that will determine when the overlay will be reset. This is intended for breaking changes like the ones we had with the additions of percentage based layouts or the addition of foldable/portrait layouts. This also includes versions for each individual layout so we don't have to reset every layout if only one is broken. Additionally, this includes new L3/R3 buttons. | |||
2023-07-02 | Merge pull request #10998 from Morph1984/qt-stop-messing-with-me | liamwhite | |
core_timing: Remove GetCurrentTimerResolution in CoreTiming loop | |||
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 #10969 from Morph1984/k-synchronize | liamwhite | |
kernel: Synchronize | |||
2023-07-02 | core_timing: Remove GetCurrentTimerResolution in CoreTiming loop | Morph | |
Other programs may change this value, but if thousands of syscalls in this loop is undesirable, then we can just set this once. | |||
2023-07-02 | Merge pull request #10949 from t895/memory-requirements | liamwhite | |
android: Rework MemoryUtil | |||
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-02 | Merge pull request #10710 from liamwhite/romfs2 | liamwhite | |
fsmitm_romfsbuild: avoid full path lookups | |||
2023-07-02 | Merge pull request #10993 from liamwhite/revert-pr-10583 | Fernando S | |
Revert "texture_cache: Fix incorrect logic for AccelerateDMA" | |||
2023-07-01 | Revert "texture_cache: Fix incorrect logic for AccelerateDMA" | Liam | |
This reverts commit 1fc47361a12afd91d8ea0b76378e0b3d4feb93a6. | |||
2023-07-01 | Merge pull request #10984 from comex/cob | liamwhite | |
Minor cleanup in BufferCacheRuntime::ReserveNullBuffer | |||
2023-07-01 | Merge pull request #10974 from Steveice10/macos_vk | liamwhite | |
vulkan: Improvements to macOS surface creation | |||
2023-07-01 | Merge pull request #10970 from Morph1984/thing | liamwhite | |
general: Misc changes that did not deserve their own PRs | |||
2023-07-01 | Merge pull request #10966 from Morph1984/heap-corruption | liamwhite | |
sink_stream: Resolve heap buffer corruption due to out of bounds write | |||
2023-07-01 | Merge pull request #10950 from german77/mouse_tune | liamwhite | |
input_common: Tune mouse controls | |||
2023-07-01 | yuzu: Use test window with VulkanSurface to check for present modes. | Steveice10 | |
It is probably not correct to create a surface on a non-VulkanSurface window. On macOS this causes a preferences crash due to missing CAMetalLayer. | |||
2023-07-01 | kernel: Synchronize | Morph | |
2023-07-01 | Minor cleanup in BufferCacheRuntime::ReserveNullBuffer | comex | |
As far as I can tell, there is no reason to OR this bit in separately. | |||
2023-07-01 | renderer_vulkan: Fix some missing view formats | GPUCode | |
* Many times the format itself wouldn't have been added to the list causing device losses for nvidia GPUs * Also account for ASTC acceleration storage views | |||
2023-07-01 | renderer_vulkan: Add support for VK_KHR_image_format_list | GPUCode | |
2023-06-30 | vulkan: Use newer VK_EXT_metal_surface to create surface for MoltenVK. | Steveice10 | |
2023-07-01 | Update translations (2023-07-01) (#10972) | zhaobot | |
Co-authored-by: The yuzu Community <noreply-fake@community.yuzu-emu.org> | |||
2023-06-30 | parcel: Optimize small_vector sizes | Morph | |
2023-06-30 | maxwell_dma: Specify dst_operand.pitch instead of a temp var | Morph | |
2023-06-30 | general: Use ScratchBuffer where possible | Morph | |
2023-06-30 | yuzu: Ensure mouse panning can't be enabled with real mouse emulation | german77 | |
2023-06-30 | Merge pull request #10953 from FernandoS27/oh-oopsies-yfc | Fernando S | |
Texture cache: Fix YFC regression due to code testing | |||
2023-06-30 | android: Show memory warning once | Charles Lombardo | |
2023-06-30 | ring_buffer: Fix const usage on std::span | Morph | |
2023-06-30 | scratch_buffer: Add member types to ScratchBuffer | Morph | |
Allows for implicit conversion to std::span<T>. | |||
2023-06-30 | Merge pull request #10956 from FernandoS27/pikmin-another-game-ill-hate | Fernando S | |
AccelerateDMA: Don't accelerate 3D texture DMA operations | |||
2023-06-30 | android: Rework MemoryUtil | Charles Lombardo | |
Uses string templates and rounds up memory amount for potentially inaccurate checks now | |||
2023-06-30 | sink_stream: Resolve heap buffer corruption due to out of bounds write | Morph | |
Also, remove the use of ScratchBuffer when upmixing, as other channels may not be initialized with zeroed out data. | |||
2023-06-29 | AccelerateDMA: Don't accelerate 3D texture DMA operations | Fernando Sahmkow | |
2023-06-29 | Merge pull request #10955 from 8bitDream/gradle | Charles Lombardo | |
android: Suppress a known incompatibility | |||
2023-06-29 | Merge pull request #10935 from Morph1984/mwaitx | liamwhite | |
x64: Make use of monitorx instructions for power efficient sleeps (AMD) | |||
2023-06-29 | Merge pull request #10937 from german77/ring | liamwhite | |
input_common: Remove duplicated enum and fix ring detection | |||
2023-06-29 | Merge pull request #10946 from goldenx86/amdBlending | liamwhite | |
Blacklist EDS3 blending from new AMD drivers | |||
2023-06-29 | android: Suppress a known incompatibility | Abandoned Cart | |
Android Gradle plugin 8.0.2 is designed for API 33, but a newer plugin hasn't been released yet. The warning message is rather extravagant, but also suggests adding this property if you are aware of the risks. | |||
2023-06-29 | Memory Tracker: Use 64 bit atomics instead of 128 bits | Fernando Sahmkow | |
2023-06-29 | Texture cache: Fix YFC regression due to code testing | Fernando Sahmkow | |
2023-06-29 | input_common: Allow timeouts to happen while scanning for a ring | german77 | |
2023-06-28 | input_common: Tune mouse controls | Narr the Reg | |
2023-06-28 | android: Make MemoryUtil an object | Charles Lombardo | |
2023-06-28 | Merge pull request #10945 from t895/android-14 | bunnei | |
android: Android 14 support | |||
2023-06-28 | Blacklist EDS3 blending from new AMD drivers | Matías Locatti | |
2023-06-28 | android: Android 14 support | Charles Lombardo | |
Specifies the permissions needed for the changes to foreground services in Android 14. | |||
2023-06-28 | Memory Tracking: Optimize tracking to only use atomic writes when contested ↵ | Fernando Sahmkow | |
with the host GPU | |||
2023-06-28 | MemoryTracking: Initial setup of atomic writes. | Fernando Sahmkow | |
2023-06-28 | Merge pull request #10837 from liamwhite/mali-support | liamwhite | |
android: Mali support |