Age | Commit message (Collapse) | Author |
|
Vulkan does not support null buffers on transform feedback bindings.
Emulate these using the same null buffer we were using for index
buffers.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
general: Move most settings' defaults and labels into their definition
|
|
Slight improvements to readability.
Dropped suggestions for string_view (settings.h:101), pass by value
(settings.h:82), reverting double to a float (config.cpp:316), and other
smaller ones, some out of scope.
Addresses review feedback.
Co-authored-by: Ameer J <52414509+ameerj@users.noreply.github.com>
|
|
* Fix out of bound blit error
* Fix code read
* Fix ci error
Co-authored-by: Feng Chen <chen.feng@gloritysolutions.com>
|
|
Support more PCM formats
|
|
audio_core: Preserve front channel volume after 6 to 2 downmix
|
|
Many games report 6 channel output while only providing data for 2. We only output 2-channel audio regardless, and in the downmixing, front left/right only provide 36% of their volume. This is done assuming all of the other channels also contain valid data, but in many games they don't. This PR alters the downmixing to preserve front left/right, so volume is not lost.
This improves volume in Link's Awakening, New Super Mario Bros U, Disgaea 6, Super Kirby Clash.
|
|
[audren] Report 2 channels active rather than 1
|
|
According to
https://gitlab.freedesktop.org/mesa/mesa/-/issues/3820#note_753371 we
need to set these to true for use with 3D textures.
Fixes BOTW teleporting on RadeonSI and iris.
|
|
common: fs: More misc. changes
|
|
GPU Memory Manager - Correct handling of non continuous backing memory.
|
|
|
|
|
|
Treats (un)signed comparison mismatches as errors to be consistent with MSVC
|
|
There's no point in keeping the file open after the write limit is exceeded. This allows the file to be committed to the disk shortly after it is closed and avoids redundantly checking whether or not the write limit is exceeded.
|
|
It became apparent that logging can continuously spam errors that trigger file flushing.
Since committing the files to disk is an expensive operation, this causes unnecessarily high disk usage.
As such, we will revert Flush() to the previous behavior and add a Commit() member function in the event that this behavior is needed.
|
|
This ensures that GetSize always retrieves the correct file size after a write operation.
|
|
general: Enforce multiple warnings in MSVC
|
|
service: mii: Retrieve the correct default miis.
|
|
Slightly refactor NVDEC and codecs for readability and safety
|
|
input_common: Add missing modifier callback to analog from button
|
|
|
|
|
|
CMakeLists: Enforce C4189 on MSVC
|
|
|
|
|
|
|
|
|
|
|
|
We were including the first 2 default miis which are not meant to be shown in games. With this change, we properly retrieve the 6 default miis shown in games, with 3 of each gender.
|
|
|
|
|
|
This supplements C4101 by detecting initialized but unreferenced local variables
|
|
[audio_core] Decouple audio update and processing, and process at variable rate
|
|
I must have been asleep or something. These need to be read with the new
ReadBasicSetting function.
|
|
Fixes Disgaea 6 Demo issues.
|
|
|
|
|
|
cmake: Improve Linux dependency checking for externals
|
|
Also adds documentation for the ReadSetting function.
Address review comments.
Co-authored-by: Mai M. <mathew1800@gmail.com>
|
|
yuzu qt, core: Support LayeredFS mods from SDMC directory
|
|
bcat: Fix settings access
telemetry_session: Fix settings accesses
So this is what I get for testing with the web service disabled.
touch_from_button: Fix settings access for clang
|
|
For simple primitive settings, moves their defaults and labels to
definition time.
Also fixes typo and clang-format
yuzu qt: config: Fix rng_seed
|