- 09 Aug, 2020 1 commit
-
-
bunnei authored
vfs_vector: Make creation of array vfs files less verbose
-
- 07 Aug, 2020 8 commits
-
-
bunnei authored
game_list_worker: Do not clear entries when > 1 gamedir is present
-
bunnei authored
am: Unstub SetScreenShotPermission
-
bunnei authored
video_core: Remove redundant pixel format type
-
bunnei authored
ci: Make use of clang-format 10.0
-
David authored
common/concepts: Rename IsBaseOf to DerivedFrom
-
Lioncash authored
This makes it more inline with its currently unavailable standardized analogue std::derived_from. While we're at it, we can also make the template match the requirements of the standardized variant as well.
-
bunnei authored
partition_data_manager: Make data arrays constexpr
-
bunnei authored
address_arbiter/scheduler: Resolve sign conversion warnings
-
- 06 Aug, 2020 5 commits
-
-
Lioncash authored
Fills in some hashes that were previously unhandled.
-
Lioncash authored
Previously the constructor for all of these would run at program startup, consuming time before the application can enter main(). This is also particularly dangerous, given the logging system wouldn't have been initialized properly yet, yet the program would use the logs to signify an error. To rectify this, we can replace the literals with constexpr functions that perform the conversion at compile-time, completely eliminating the runtime cost of initializing these arrays.
-
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 9 commits
-
-
bunnei authored
buffer_queue: Make use of designated initializers/std::nullopt where applicable
-
bunnei authored
CMakeLists: Resolve #4478
-
Lioncash authored
-
Lioncash authored
Makes our type conversion explicit.
-
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.
-
Lioncash authored
We can add a helper function to make creation of these files nicer. While we're at it, we can eliminate an unnecessary std::array copy in the constructor. This makes the overhead on some of these functions way less intensive, given some arrays were quite large. e.g. The timezone location names are 9633 bytes in size.
-
bunnei authored
loader: Make IdentifyFile typesafe
-
Morph authored
Previously the map of entries was being cleared while looping through each game directory, this resulted into all game directories except the last game dir to lose content metadata information. Fix this by clearing the entries only once.
-
- 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 4 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
-