Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-06-17 | Reaper: Change memory restrictions on TC depending on host memory on VK. | Fernando Sahmkow | |
2021-06-16 | Reaper: Address Feedback. | Fernando Sahmkow | |
2021-06-16 | Reaper: Setup settings and final tuning. | Fernando Sahmkow | |
2021-06-16 | Reaper: Tune it up to be an smart GC. | Fernando Sahmkow | |
2021-06-16 | Initial Reaper Setup | ReinUsesLisp | |
WIP | |||
2021-06-16 | vulkan_memory_allocator: Release allocations with no commits | ReinUsesLisp | |
2021-06-16 | Merge pull request #6464 from ameerj/disable-astc | bunnei | |
textures: Add a toggle for GPU Accelerated ASTC decoder | |||
2021-06-16 | Merge pull request #6460 from Morph1984/fs-access-log-fix | Morph | |
fsp_srv: Fix filesystem access logging | |||
2021-06-16 | common: fs: file: Remove redundant call to WriteStringToFile | Morph | |
The Append open mode will create a new file if said file does not exist at a given path, making this call redundant. | |||
2021-06-16 | fsp_srv: Fix filesystem access logging | Morph | |
This introduces a new setting Enable FS Access Log which saves the filesystem access log to sdmc:/FsAccessLog.txt If this setting is not enabled, this will indicate to FS to not call OutputAccessLogToSdCard. Fixes softlocks during loading in Xenoblade Chronicles 2 when certain DLC is enabled. | |||
2021-06-15 | Merge pull request #6462 from Morph1984/proper-flush | bunnei | |
common: fs: file: Flush the file to the disk when Flush() is called | |||
2021-06-15 | astc_decoder: Fix LDR CEM1 endpoint calculation | ameerj | |
Per the spec, L1 is clamped to the value 0xff if it is greater than 0xff. An oversight caused us to take the maximum of L1 and 0xff, rather than the minimum. Huge thanks to wwylele for finding this. Co-Authored-By: Weiyi Wang <wwylele@gmail.com> | |||
2021-06-15 | yuzu_cmd/config: Add Accelerate ASTC and missing NVDEC emulation settings | ameerj | |
2021-06-15 | configure_graphics: Add Accelerate ASTC decoding setting | ameerj | |
2021-06-15 | textures: Reintroduce CPU ASTC decoder | ameerj | |
Users may want to fall back to the CPU ASTC texture decoder due to hangs and crashes that may be caused by keeping the GPU under compute heavy loads for extended periods of time. This is especially the case in games such as Astral Chain which make extensive use of ASTC textures. | |||
2021-06-14 | Merge pull request #6470 from ameerj/lm-silence | bunnei | |
lm: Demote LM guest logs to LOG_DEBUG | |||
2021-06-14 | lm: Demote guest logs to LOG_DEBUG | ameerj | |
Guest logs are not very useful, as they are intended for use by the game developers during development. As such, they provide little meaning to be logged by yuzu and tend to overwhelm the log output at times. | |||
2021-06-14 | Merge pull request #6456 from Morph1984/very-important-changes | bunnei | |
configure_cpu_debug: Clarify settings behavior | |||
2021-06-14 | Merge pull request #6448 from Morph1984/recursive-dir-iterator | Fernando Sahmkow | |
common: fs: Use the normal directory iterator in *Recursively functions | |||
2021-06-13 | Merge pull request #6463 from Morph1984/restructure-logging | Mai M | |
common: logging: Restructure logging backend | |||
2021-06-13 | general: Remove extraneous includes | Morph | |
2021-06-13 | common: logging: Restructure backend code | Morph | |
2021-06-13 | common: logging: backend: Wrap IOFile in a unique_ptr | Morph | |
Allows us to forward declare Common::FS::IOFile. | |||
2021-06-13 | common: fs: file: Flush the file to the disk when Flush() is called | Morph | |
std::fflush does not guarantee that file buffers are flushed to the disk. Use _commit on Windows and fsync on all other OSes to ensure that the file is flushed to the disk. | |||
2021-06-13 | Merge pull request #6452 from german77/sixaxis_firmware_stub | Morph | |
hid: Stub IsFirmwareUpdateAvailableForSixAxisSensor | |||
2021-06-13 | configure_cpu_debug: Clarify settings behavior | Morph | |
This makes it clear that the disabled settings only take effect when CPU Accuracy is set to Debug Mode. | |||
2021-06-12 | common: fs: Use the normal directory iterator in *Recursively functions | Morph | |
MSVC's implementation of recursive_directory_iterator throws an exception on an error despite a std::error_code being passed into its constructor. This is most likely a bug in MSVC's implementation since directory_iterator does not throw an exception on an error. We can replace the usage of recursive_directory_iterator for now until MSVC fixes their implementation of it. | |||
2021-06-11 | Merge pull request #6453 from lat9nq/libusb-fix-msvc | bunnei | |
externals: Don't set FOUND or VERSION on LIBUSB | |||
2021-06-11 | externals: Don't set FOUND or VERSION on LIBUSB | lat9nq | |
Fixes an issue where libusb.h wouldn't be found when building yuzu on MSVC. This only affects the "traditional" CMake pathway for linking libusb to yuzu AKA MSVC. For autotools we still want to set these variables before configuring SDL. | |||
2021-06-11 | Merge pull request #6451 from Morph1984/check-disk-space-dump | bunnei | |
yuzu: main: Ensure enough space is available for RomFS dumping | |||
2021-06-11 | hid: Stub IsFirmwareUpdateAvailableForSixAxisSensor | german77 | |
2021-06-11 | Merge pull request #6422 from FernandoS27/i-am-the-senate | Mai M | |
Implement/Port Fastmem from Citra to Yuzu | |||
2021-06-11 | yuzu: main: Ensure enough space is available for RomFS dumping | Morph | |
This warns the user if there isn't enough free space to dump the entire RomFS to disk. It requires at least the size of the extracted RomFS + 1 GiB as a buffer of free space. | |||
2021-06-11 | Merge pull request #6443 from Morph1984/k-light-condition-variable | bunnei | |
kernel: KLightConditionVariable: Update implementation to 12.x | |||
2021-06-11 | common/host_memory: Implement a fallback if fastmem fails. | Markus Wick | |
This falls back to the old approach of using a virtual buffer. Windows is untested, but this build should fix support for Windows < 10 v1803. However without fastmem support at all. | |||
2021-06-11 | common/host_shader: Load Windows 10 functions dynamically | ReinUsesLisp | |
Workaround old headers and libraries shipped on MinGW. | |||
2021-06-11 | GPUTHread: Remove async reads from Normal Accuracy. | Fernando Sahmkow | |
2021-06-11 | rasterizer: Update pages in batches | ReinUsesLisp | |
2021-06-11 | host_memory: Support staged VirtualProtect calls | ReinUsesLisp | |
2021-06-11 | General: Add settings for fastmem and disabling adress space check. | FernandoS27 | |
2021-06-11 | common/host_memory: Optimize for huge tables. | Markus Wick | |
In theory, if we have 2 MB continously mapped, this should save one layer of TLB. Let's make it at least more likely by aligning the memory. | |||
2021-06-11 | core: Make use of fastmem | Markus Wick | |
2021-06-11 | tests: Add tests for host memory | ReinUsesLisp | |
2021-06-11 | common/host_memory: Add Linux implementation | Markus Wick | |
2021-06-11 | common/host_memory: Add interface and Windows implementation | ReinUsesLisp | |
2021-06-11 | Merge pull request #6450 from lat9nq/update-sdl | Morph | |
externals: Update SDL to 2f248a2a | |||
2021-06-11 | externals: Update SDL to 2f248a2a | lat9nq | |
2021-06-10 | Merge pull request #6407 from lat9nq/fix-libusb-2 | bunnei | |
cmake: Use autotools for libusb linking generally on GNU, and cleanup | |||
2021-06-10 | Merge pull request #6445 from degasus/fix_ubsn | bunnei | |
Fix GCC undefined behavior sanitizer. | |||
2021-06-11 | kernel: Unconditionally set thread state when appropriate | Morph | |