aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2022-03-19common: Reduce unused includesameerj
2022-03-19core: Reduce unused includesameerj
2022-03-18Merge pull request #8028 from v1993/patch-9bunnei
bsd: Allow inexact match for address length in AcceptImpl
2022-03-18Address review commentsLiam
2022-03-18shader_recompiler/EXIT: skip render targets with no outputsLiam
2022-03-18general: Reduce core.h includesameerj
2022-03-18KHandleTable: Optimize table entry layoutMorph
Since the handle type is not being used, we can reduce the amount of space each entry takes up by 4 bytes.
2022-03-17shader_recompiler/EXIT: increment output register on failed enable testLiam
2022-03-17vk_texture_cache: Do not reinterpret DepthStencil source imagesameerj
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-18Merge pull request #8024 from liamwhite/const-indexingFernando S
Add shader support for const buffer indirect addressing
2022-03-18Merge pull request #8030 from liamwhite/s8d24-conversionFernando S
Vulkan: convert S8D24 <-> ABGR8
2022-03-17yuzu qt: Save disable_web_applet settinglat9nq
The web applet causes multiple issues with the rest of the application. Disable it by default and add a debug option to re-enable it until a proper solution can be found.
2022-03-17main: Update Disable Web Applet warninglat9nq
2022-03-17configure_debug: Add option to set disable_web_appletlat9nq
Allow the user to configure the web applet usage ahead of booting the application.
2022-03-17yuzu: Move disable_web_applet to UISettingslat9nq
2022-03-17Address review commentsLiam
2022-03-17shader_recompiler: Use functions for indirect const buffer accessesLiam
2022-03-17Address review commentsLiam
2022-03-16Merge pull request #7964 from german77/miiiibunnei
applet: mii: Simple implementation of mii applet
2022-03-16Address review commentsLiam
2022-03-16shader_recompiler: Implement LDC.IS address modeLiam
2022-03-16Merge pull request #8013 from bunnei/kernel-slab-rework-v2Fernando S
Kernel Memory Updates (Part 6): Use guest memory for slab heaps & update TLS.
2022-03-16Merge pull request #8023 from ameerj/kirby-pop-inFernando S
maxwell_3d: Implement a safer CB data upload
2022-03-15Vulkan: convert S8D24 <-> ABGR8Liam
2022-03-15bsd: Allow inexact match for address length in AcceptImplValeri
Minecraft passes in zero for length, but this should account for all possible cases
2022-03-15emu_window_sdl2: Set window size to display dimensions for exclusive fullscreenlat9nq
Since SDL2 does not automatically resize the canvas when entering fullscreen mode, resize the window to desktop display dimensions.
2022-03-15yuzu_cmd: Allow user to specify config file locationlat9nq
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-15default_ini: List use_extended_memory_layout in default config filelat9nq
2022-03-14core: hle: kernel: init_slab_setup: Move CalculateSlabHeapGapSize to global ↵bunnei
namespace.
2022-03-14core: 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-14core: 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-14core: hle: kernel: Make object list container global and ensure it is reset ↵bunnei
on each emulation session.
2022-03-14core: 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-14core: hle: kernel: k_process: Remove handle table finalize, reset page table.bunnei
2022-03-14core: hle: kernel: k_process: Implement thread local storage accurately.bunnei
2022-03-14core: hle: kernel: k_page_table: Add implementations of MapPages, ↵bunnei
UnmapPages, and FindFreeArea for TLS.
2022-03-14core: hle: kernel: k_slab_heap: Refresh to use guest allocations.bunnei
2022-03-14core: 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-14core: hle: kernel: k_page_buffer: Add KThreadLocalPage primitive.bunnei
2022-03-14core: hle: kernel: k_page_buffer: Add KPageBuffer primitive.bunnei
2022-03-14core: hle: kernel: k_thread: Ensure host Fiber is freed.bunnei
2022-03-14core: hle: kernel: k_server_session: Ensure SessionRequestManager is freed.bunnei
2022-03-14core: hle: service: kernel_helpers: Use system resource limit.bunnei
2022-03-14core: hle: service: sm: Fix KPort reference count.bunnei
2022-03-14core: hle: kernel: k_thread: Update to reflect tree changes.bunnei
2022-03-14core: hle: kernel: Use weak_ptr where possible for SessionRequestHandler and ↵bunnei
SessionRequestManager.
2022-03-14core: hle: kernel: k_memory_layout: Update kernel slab memory sizes.bunnei
2022-03-14core: hle: kernel: svc_types: Add ThreadLocalRegionSize.bunnei
2022-03-14core: hle: kernel: k_condition_variable: Update to reflect tree changes.bunnei
2022-03-14core: hle: kernel: k_address_arbiter: Update to reflect tree changes.bunnei