Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-03-21 | codec: Plug GPU decoder memory leak | ameerj | |
2022-03-21 | codec: Disable HW_FRAMES method check on Windows | ameerj | |
It was reported that this method causes crashes on certain Linux decoding backends, hence the check to avoid it. This subsequently caused Windows GPU decoders to never be selected and always fall back to CPU decoding, disable the check on Windows for now. | |||
2022-03-20 | Merge pull request #7812 from FernandoS27/made-straight-from-the-nut | bunnei | |
BufferCache: Find direction of the stream buffer increase. | |||
2022-03-20 | BufferCache: Find direction of the stream buffer increase. | Fernando Sahmkow | |
2022-03-20 | Merge pull request #8054 from merryhime/dynarmic | Mai M | |
dynarmic: Accelerate SHA256 and implement for A32 frontend | |||
2022-03-20 | dynarmic: Accelerate SHA256 and implement for A32 frontend | Merry | |
* Implements hardware acceleration for SHA256 instructions. * Adds SHA256 instructions introduced in ARMv8 to A32 frontend. * Implements polyfill for processors that do not support hardware accelerated SHA instructions. | |||
2022-03-20 | Merge pull request #8036 from ameerj/starbit-nv | Fernando S | |
vk_texture_cache: Do not reinterpret DepthStencil source images | |||
2022-03-20 | Merge pull request #7840 from lioncash/bitor | bunnei | |
texture_cache: Amend unintended bitwise OR in SynchronizeAliases | |||
2022-03-19 | Merge pull request #8040 from Morph1984/handle-table | bunnei | |
KHandleTable: Optimize table entry layout | |||
2022-03-19 | Merge pull request #8047 from ameerj/msvc-test-disable | bunnei | |
.ci/build-msvc: Disable YUZU_TESTS cmake variable | |||
2022-03-19 | Merge pull request #8025 from lat9nq/cmd-specify-config | bunnei | |
yuzu_cmd: Allow user to specify config file location | |||
2022-03-19 | build-msvc: Disable tests | ameerj | |
2022-03-18 | Merge pull request #8028 from v1993/patch-9 | bunnei | |
bsd: Allow inexact match for address length in AcceptImpl | |||
2022-03-18 | Merge pull request #8039 from ameerj/core-include | Morph | |
general: Reduce core.h includes | |||
2022-03-18 | general: Reduce core.h includes | ameerj | |
2022-03-18 | KHandleTable: Optimize table entry layout | Morph | |
Since the handle type is not being used, we can reduce the amount of space each entry takes up by 4 bytes. | |||
2022-03-17 | vk_texture_cache: Do not reinterpret DepthStencil source images | ameerj | |
Fixes star pointer interactions in Super Mario Galaxy on some drivers, notably Nvidia. Co-Authored-By: Fernando S. <1731197+fernandos27@users.noreply.github.com> | |||
2022-03-18 | Merge pull request #8024 from liamwhite/const-indexing | Fernando S | |
Add shader support for const buffer indirect addressing | |||
2022-03-18 | Merge pull request #8030 from liamwhite/s8d24-conversion | Fernando S | |
Vulkan: convert S8D24 <-> ABGR8 | |||
2022-03-17 | Address review comments | Liam | |
2022-03-17 | shader_recompiler: Use functions for indirect const buffer accesses | Liam | |
2022-03-17 | Address review comments | Liam | |
2022-03-16 | Merge pull request #7964 from german77/miiii | bunnei | |
applet: mii: Simple implementation of mii applet | |||
2022-03-16 | Address review comments | Liam | |
2022-03-16 | shader_recompiler: Implement LDC.IS address mode | Liam | |
2022-03-16 | Merge pull request #8013 from bunnei/kernel-slab-rework-v2 | Fernando S | |
Kernel Memory Updates (Part 6): Use guest memory for slab heaps & update TLS. | |||
2022-03-16 | Merge pull request #8023 from ameerj/kirby-pop-in | Fernando S | |
maxwell_3d: Implement a safer CB data upload | |||
2022-03-15 | Merge pull request #8026 from lat9nq/ext-mem-ini | bunnei | |
default_ini: List use_extended_memory_layout in default config file | |||
2022-03-15 | Vulkan: convert S8D24 <-> ABGR8 | Liam | |
2022-03-15 | bsd: Allow inexact match for address length in AcceptImpl | Valeri | |
Minecraft passes in zero for length, but this should account for all possible cases | |||
2022-03-15 | yuzu_cmd: Allow user to specify config file location | lat9nq | |
Adds an option `-c` or `--config` with one required argument that allows the user to specify to where the config file is located. Useful for scripts that run specific games with different preferences for settings. | |||
2022-03-15 | default_ini: List use_extended_memory_layout in default config file | lat9nq | |
2022-03-14 | Merge pull request #8006 from BytesGalore/fix_cmake_missing_qt5_dbus | bunnei | |
build(cmake): fix missing Qt5::DBus link target for bundled linux package | |||
2022-03-14 | core: hle: kernel: init_slab_setup: Move CalculateSlabHeapGapSize to global ↵ | bunnei | |
namespace. | |||
2022-03-14 | core: hle: kernel: Allocate dummy threads on host thread storage. | bunnei | |
- Fixes a crash where on subsequent boots, long-lived host threads would have their dummy threads freed. | |||
2022-03-14 | core: hle: kernel: Downgrade dangling objects warning to debug. | bunnei | |
- It is not impossible to leak kernel objects, so this is not really any issue anymore (albeit, still interesting). | |||
2022-03-14 | core: hle: kernel: Make object list container global and ensure it is reset ↵ | bunnei | |
on each emulation session. | |||
2022-03-14 | core: hle: kernel: Remove server session tracking. | bunnei | |
- These are now allocated/managed by emulated memory, so we do not need to track and free them on shutdown. | |||
2022-03-14 | core: hle: kernel: k_process: Remove handle table finalize, reset page table. | bunnei | |
2022-03-14 | core: hle: kernel: k_process: Implement thread local storage accurately. | bunnei | |
2022-03-14 | core: hle: kernel: k_page_table: Add implementations of MapPages, ↵ | bunnei | |
UnmapPages, and FindFreeArea for TLS. | |||
2022-03-14 | core: hle: kernel: k_slab_heap: Refresh to use guest allocations. | bunnei | |
2022-03-14 | core: hle: kernel: Update init_slab_heap, use device memory, and add ↵ | bunnei | |
KThreadLocalPage and KPageBuffer. - Refreshes our slab initialization code to latest known behavior. - Moves all guest kernel slabs into emulated device memory. - Adds KThreadLocalPage and KPageBuffer, which we will use for accurate TLS management. | |||
2022-03-14 | core: hle: kernel: k_page_buffer: Add KThreadLocalPage primitive. | bunnei | |
2022-03-14 | core: hle: kernel: k_page_buffer: Add KPageBuffer primitive. | bunnei | |
2022-03-14 | core: hle: kernel: k_thread: Ensure host Fiber is freed. | bunnei | |
2022-03-14 | core: hle: kernel: k_server_session: Ensure SessionRequestManager is freed. | bunnei | |
2022-03-14 | core: hle: service: kernel_helpers: Use system resource limit. | bunnei | |
2022-03-14 | core: hle: service: sm: Fix KPort reference count. | bunnei | |
2022-03-14 | core: hle: kernel: k_thread: Update to reflect tree changes. | bunnei | |