- 06 Jul, 2021 3 commits
- 05 Jul, 2021 7 commits
-
-
bunnei authored
service: mii: Retrieve the correct default miis.
-
Ameer J authored
Slightly refactor NVDEC and codecs for readability and safety
-
Morph authored
input_common: Add missing modifier callback to analog from button
-
german77 authored
-
Morph authored
Replace usages of deprecated member functions in QMouseEvent and QWheelEvent
-
german77 authored
-
Mai M authored
CMakeLists: Enforce C4189 on MSVC
-
- 04 Jul, 2021 2 commits
- 03 Jul, 2021 4 commits
-
-
Fernando Sahmkow authored
-
Fernando Sahmkow authored
-
Morph authored
This supplements C4101 by detecting initialized but unreferenced local variables
-
bunnei authored
[audio_core] Decouple audio update and processing, and process at variable rate
-
- 01 Jul, 2021 3 commits
- 29 Jun, 2021 1 commit
-
-
Morph authored
yuzu qt, core: Support LayeredFS mods from SDMC directory
-
- 28 Jun, 2021 16 commits
-
-
Morph authored
main: Add GPU Vendor name to running title bar
-
Morph authored
This lets us avoid needing to wrap external headers with #pragma warning directives for warnings we treat as errors and avoids generating warnings for external code. Thanks to MerryMage for pointing this out.
-
Morph authored
-
Morph authored
-
Morph authored
-
Morph authored
-
Morph authored
-
Morph authored
-
Morph authored
We should not apply any mods when dumping a game's RomFS.
-
Morph authored
This prevents mod files from being locked due to the read-only share flag in Windows.
-
lat9nq authored
If someone else wants to support other mod formats in the SDMC directory, that can be added later. For now, just allow RomFS modding here and force people to do other types of mods the old way. Addresses review comments. Co-authored-by: LC <mathew1800@gmail.com>
-
lat9nq authored
Enables loading a mod directly from `[yuzu data directory]/sdmc/atmosphere/contents/[title_id]`. For use with some homebrew mod managers.
-
lat9nq authored
Enables dumping the RomFS to SDMC directory, specifically '[yuzu data directory]/sdmc/atmosphere/contents/[title_id]/romfs'.
-
Morph authored
-
Morph authored
main: Display the instruction set of the running title in the window name
-
ameerj authored
Displays whether the currently running title uses 64-bit instructions or only 32-bit instructions.
-
- 27 Jun, 2021 3 commits
-
-
Kelebek1 authored
Currently, processing of audio samples is called from AudioRenderer's Update method, using a fixed 4 buffers to process the given samples. Games call Update at variable rates, depending on framerate and/or sample count, which causes inconsistency in audio processing. From what I've seen, 60 FPS games update every ~0.004s, but 30 FPS/160 sample games update somewhere between 0.02 and 0.04, 5-10x slower. Not enough samples get fed to the backend, leading to a lot of audio skipping. This PR seeks to address this by de-coupling the audio consumption and the audio update. Update remains the same without calling for buffer queuing, and the consume now schedules itself to run based on the sample rate and count.
-
Morph authored
buffer_cache,texture_cache: Misc fixups from the memory reaper
-
Morph authored
libusb: Apple is a POSIX system
-
- 26 Jun, 2021 1 commit
-
-
MerryMage authored
-