Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-06-26 | codec,vic: Disable warnings in ffmpeg headers | ReinUsesLisp | |
2021-06-26 | vk_buffer_cache: Silence implicit cast warnings | ReinUsesLisp | |
2021-06-26 | buffer_cache/texture_cache: Make GC functions private | ReinUsesLisp | |
2021-06-26 | buffer_cache: Silence implicit cast warning | ReinUsesLisp | |
2021-06-25 | vulkan_device: Make device memory match the rest of the file | ReinUsesLisp | |
Match the style in the file. | |||
2021-06-24 | Merge pull request #6496 from ameerj/astc-fixes | bunnei | |
astc: Various robustness enhancements for the gpu decoder | |||
2021-06-24 | Merge pull request #6519 from Wunkolo/mem-size-literal | bunnei | |
common: Replace common_sizes into user-literals | |||
2021-06-24 | common: Replace common_sizes into user-literals | Wunkolo | |
Removes common_sizes.h in favor of having `_KiB`, `_MiB`, `_GiB`, etc user-literals within literals.h. To keep the global namespace clean, users will have to use: ``` using namespace Common::Literals; ``` to access these literals. | |||
2021-06-24 | Merge pull request #6522 from Morph1984/pragma | bunnei | |
general: Add missing #pragma once directives | |||
2021-06-24 | general: Add missing #pragma once directives | Morph | |
2021-06-24 | Add missing includes (#6521) | Chloe | |
* Add missing includes * Add array | |||
2021-06-23 | Merge pull request #6517 from lioncash/fmtlib | bunnei | |
externals: Update fmt to 8.0.0 | |||
2021-06-23 | Merge pull request #6504 from Kelebek1/samples-played | bunnei | |
[audout] Implement GetAudioOutPlayedSampleCount | |||
2021-06-23 | General: Resolve fmt specifiers to adhere to 8.0.0 API where applicable | Lioncash | |
Also removes some deprecated API usages. | |||
2021-06-23 | Merge pull request #6518 from lioncash/func | bunnei | |
maxwell3d: Add missing return in default SizeInBytes() case | |||
2021-06-23 | maxwell3d: Add missing return in default SizeInBytes() case | Lioncash | |
We were returning '1' in ComponentCount()'s default case but were neglecting to do the same with SizeInBytes(). | |||
2021-06-23 | Merge pull request #6465 from FernandoS27/sex-on-the-beach | Mai M | |
GPU: Implement a garbage collector for GPU Caches (project Reaper+) | |||
2021-06-23 | Merge pull request #6508 from ReinUsesLisp/bootmanager-stop-token | Mai M | |
bootmanager: Use std::stop_source for stopping emulation | |||
2021-06-22 | Merge pull request #6514 from OZtistic/master | Morph | |
Simple resizing of Per-Game configuration window and removal of useless Help question mark button in the title bar | |||
2021-06-22 | Merge pull request #6512 from ReinUsesLisp/wait-detached-stasks | Mai M | |
common/detached_tasks: Wait for tasks before shutting down | |||
2021-06-22 | Merge pull request #6509 from ReinUsesLisp/mouse-datarace | Mai M | |
input_common/mouse_input: Fix data race | |||
2021-06-22 | Merge pull request #6510 from ReinUsesLisp/npad-data-race | Mai M | |
npad: Fix data race when updating devices | |||
2021-06-23 | Simple resizing of the Per-Game configuration window and removal of useless ↵ | OZtistic | |
Help question mark button in the title bar | |||
2021-06-22 | Merge pull request #6493 from Morph1984/fs-nodiscard | bunnei | |
common: fs: Miscellaneous changes | |||
2021-06-22 | Merge pull request #6472 from Morph1984/spl | bunnei | |
service: spl: Implement general SPL service | |||
2021-06-22 | Merge pull request #6483 from Morph1984/get-tz-file | bunnei | |
service: time: Use GetFileRelative to get files within subdirectories | |||
2021-06-22 | Reaper: Set minimum cleaning limit on OGL. | Fernando Sahmkow | |
2021-06-22 | common: fs: Add a description of a regular file in IsFile | Morph | |
This provides a more concrete example of what a regular file is and isn't. | |||
2021-06-22 | vfs_real: Fix Mode to FileAccessMode conversion | Morph | |
These enforce requiring the file to exist prior to opening. | |||
2021-06-22 | common: fs: Amend IsFile check in FileOpen / (Write/Append)StringToFile | Morph | |
This check was preventing files with the Write or Append file access modes from being created, as per the documented behavior in FileAccessMode. This amends the check to test for the existence of a filesystem object prior to checking whether it is a regular file. Thanks to liushuyu for pointing out that removing the check altogether would not guard against attempting to open non-regular files such as directories, symlinks, FIFO (pipes), sockets, block devices, or character devices. The documentation has also been updated for these functions to clarify that a file refers to a regular file. | |||
2021-06-22 | common: fs: file: Remove [[nodiscard]] attribute from Flush | Morph | |
Similarly, Flush() is typically called to attempt to flush a file into the disk. In the one case where this is used, we do not care whether the flush has succeeded or not, making [[nodiscard]] unnecessary. | |||
2021-06-22 | common: fs: Remove [[nodiscard]] attribute on Remove* functions | Morph | |
There are a lot of scenarios where we don't particularly care whether or not the removal operation and just simply attempt a removal. As such, removing the [[nodiscard]] attribute is best for these functions. | |||
2021-06-22 | Merge pull request #6506 from ReinUsesLisp/master-semaphore-jthread | bunnei | |
vk_master_semaphore: Use jthread for debug thread | |||
2021-06-22 | Merge pull request #6511 from ReinUsesLisp/core-is-powered-data-race | Mai M | |
core: Make is_powered_on atomic | |||
2021-06-22 | core: Make is_powered_on atomic | Rodrigo Locatti | |
Fixes potential data races when shutting down. | |||
2021-06-22 | common/detached_tasks: Wait for tasks before shutting down | Rodrigo Locatti | |
If this is not waited on, the synchronization primitives are destroyed whe main exits and the detached task ends up signalling garbage and not properly finishing. | |||
2021-06-22 | npad: Fix data race when updating devices | Rodrigo Locatti | |
Add a lock to avoid data races. This reduces the number of -fsanitize=thread errors significantly. | |||
2021-06-22 | input_common/mouse_input: Fix data race | Rodrigo Locatti | |
Fix data race using std::jthread and std::stop_token. | |||
2021-06-21 | Merge pull request #6481 from Morph1984/missing-peak-set | bunnei | |
kernel: Fix missing peak set in KResourceLimit::SetLimitValue | |||
2021-06-22 | Implement audout GetAudioOutPlayedSampleCount | Kelebek1 | |
Used in Ninja Gaiden games. | |||
2021-06-22 | bootmanager: Use std::stop_source for stopping emulation | ReinUsesLisp | |
Use its std::stop_token to abort shader cache loading. Using std::stop_token instead of std::atomic_bool allows the usage of other utilities like std::stop_callback. | |||
2021-06-21 | vk_master_semaphore: Use jthread for debug thread | ReinUsesLisp | |
2021-06-21 | Merge pull request #6499 from FernandoS27/we-were-on-a-break | bunnei | |
Update dynarmic and add new unsafe CPU option. | |||
2021-06-21 | Merge pull request #6475 from ameerj/unlimit-fps | bunnei | |
nvflinger: Add experimental toggle to disable buffer swap interval limits | |||
2021-06-21 | Merge pull request #6486 from CaptV0rt3x/httplib | Mai M | |
externals: httplib: replace custom httplib header with upstream as submodule | |||
2021-06-20 | Update dynarmic and add new unsafe CPU option. | Fernando Sahmkow | |
2021-06-20 | Reaper: Guarantee correct deletion. | Fernando Sahmkow | |
2021-06-20 | Reaper: Upgrade label from unsafe to experimental as no regressions are ↵ | Fernando Sahmkow | |
known now. | |||
2021-06-19 | util_shaders: Specify ASTC decoder memory barrier bits | ameerj | |
2021-06-19 | astc_decoder.comp: Remove unnecessary LUT SSBOs | ameerj | |
We can move them to instead be compile time constants within the shader. |