- 06 Aug, 2020 5 commits
-
-
Lioncash authored
VAddr will always be 64-bit, so there's no need to take a trivial primitive alias by reference.
-
Lioncash authored
With C++20 we can simplify the erasing idiom.
-
bunnei authored
ipc_helpers: Only allow trivially copyable objects with PushRaw() and PopRaw()
-
bunnei authored
aes_util: Allow SetIV() to be non-allocating
-
bunnei authored
logging/backend: Make use of designated initializers
-
- 05 Aug, 2020 5 commits
-
-
bunnei authored
buffer_queue: Make use of designated initializers/std::nullopt where applicable
-
bunnei authored
CMakeLists: Resolve #4478
-
bunnei authored
common/atomic_ops: Don't cast away volatile from pointers
-
Lioncash authored
It's undefined behavior to use non-trivially copyable objects with std::memcpy, so we can add asserts to catch usages of these at compile-time.
-
bunnei authored
loader: Make IdentifyFile typesafe
-
- 04 Aug, 2020 13 commits
-
-
bunnei authored
time_zone_binary: Make use of designated initializers
-
bunnei authored
vi: IApplicationDisplayService:GetIndirectLayerImageRequiredMemoryInfo
-
bunnei authored
hle: nvdrv: Rewrite of GPU memory management.
-
bunnei authored
CMakeLists: Update several libraries
-
bunnei authored
renderer_opengl: Use 1/4 of all threads for async shader compilation
-
bunnei authored
game_list_worker: Fix game list subdirectory scanning
-
bunnei authored
perf_stats: Mark GetMeanFrametime() as const
-
bunnei authored
vk_texture_cache: Silence -Wmissing-field-initializer warnings
-
David authored
patch_manager: Resolve -Wignored-qualifier warnings
-
David authored
yuzu: Resolve C++20 deprecation warnings related to lambda captures
-
David authored
profile_manager: Make use of designated initializers
-
bunnei authored
dmnt_cheat_vm: Make use of designated initializers
-
bunnei authored
fsp-srv: Stub Read/WriteSaveDataFileSystemExtraDataWithMaskBySaveDataAttribute
-
- 03 Aug, 2020 17 commits
-
-
Lioncash authored
In a few places, the data to be set as the IV is already within an array. We shouldn't require this data to be heap-allocated if it doesn't need to be. This allows certain callers to reduce heap churn.
-
bunnei authored
tests/core_timing: Remove pragma optimize(off)
-
bunnei authored
service/ldr: Resolve sign mismatch warnings
-
bunnei authored
registered_cache: Resolve -Wmaybe_uninitialized warnings
-
bunnei authored
sm: Make use of IsBaseOf for GetService
-
Lioncash authored
Same behavior, but allows us to avoid a now-unnecessary zero initialization.
-
Lioncash authored
The general pattern is to mark mutexes as mutable when it comes to matters of constness, given the mutex acts as a transient member of a data structure.
-
Lioncash authored
-
Lioncash authored
C++20 deprecates capturing the this pointer via the '=' capture. Instead, we replace it or extend the capture specification.
-
Lioncash authored
We were performing an int < size_t comparison. We can just correct the type of the induction variable.
-
Lioncash authored
This switch is enabled by default in all recent versions of GCC and Clang.
-
Lioncash authored
I made a review comment about this in the PR that this was introduced in (#3955, commit 71c47792), but it seems to have been missed. We shouldn't be using this pragma here because it's MSVC specific. This causes warnings on other compilers. The test it's surrounding is *extremely* dubious, but for the sake of silencing warnings on other compilers, we can mark "placebo" as volatile and be on with it.
-
bunnei authored
file_sys/mode: Make use of DECLARE_ENUM_FLAG_OPERATORS with Mode
-
Lioncash authored
-
Lioncash authored
Same behavior, less code.
-
Lioncash authored
Allows compilers to eliminate unnecessary zeroing out of the optional's buffer.
-
Lioncash authored
-