summaryrefslogtreecommitdiff
path: root/src (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | | | | | | | | | | | renderer_opengl: Use 1/4 of all threads for async shader compilationGravatar Morph2020-07-281-9/+4
| | |_|_|/ / / / / / / / / | |/| | | | | | | | | | |
* | | | | | | | | | | | | Merge pull request #4450 from Morph1984/fix-gamelist-scanningGravatar bunnei2020-08-041-2/+2
|\ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | game_list_worker: Fix game list subdirectory scanning
| * | | | | | | | | | | | | game_list_worker: Fix game list subdirectory scanningGravatar Morph2020-07-291-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Oddly enough the scan that feeds the manual content provider is hardcoded to scan 2 nested directories deep. This effectively rendered the scan subdirectories setting useless as the manual content provider cannot find any games located more than 2 nested directories deep. Furthermore, this behavior causes game files to be picked up by the manual content provider even if scan subdirectories is disabled. FIx this by utilizing the behavior described when populating the game list for populating the content provider.
* | | | | | | | | | | | | | Merge pull request #4472 from lioncash/const-getGravatar bunnei2020-08-042-15/+16
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | perf_stats: Mark GetMeanFrametime() as const
| * | | | | | | | | | | | | | perf_stats: Make use of designated initializersGravatar Lioncash2020-08-031-6/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Same behavior, but allows us to avoid a now-unnecessary zero initialization.
| * | | | | | | | | | | | | | perf_stats: Mark GetMeanFrametime() as constGravatar Lioncash2020-08-032-9/+9
| | |/ / / / / / / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | | | | | | | | | | | | | Merge pull request #4469 from lioncash/missingGravatar bunnei2020-08-046-3/+18
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | vk_texture_cache: Silence -Wmissing-field-initializer warnings
| * | | | | | | | | | | | | | vulkan: Silence more -Wmissing-field-initializer warningsGravatar Lioncash2020-08-036-3/+18
| |/ / / / / / / / / / / / /
* | | | | | | | | | | | | | Merge pull request #4470 from lioncash/qualifierGravatar David2020-08-041-2/+2
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | patch_manager: Resolve -Wignored-qualifier warnings
| * | | | | | | | | | | | | | patch_manager: Resolve -Wignored-qualifier warningsGravatar Lioncash2020-08-031-2/+2
| |/ / / / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Top level const will always be ignored in this case, so it can be removed.
* | | | | | | | | | | | | | Merge pull request #4481 from lioncash/cpp-depGravatar David2020-08-049-81/+88
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | yuzu: Resolve C++20 deprecation warnings related to lambda captures
| * | | | | | | | | | | | | | yuzu: Resolve C++20 deprecation warnings related to lambda capturesGravatar Lioncash2020-08-039-81/+88
| | |_|_|_|/ / / / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | C++20 deprecates capturing the this pointer via the '=' capture. Instead, we replace it or extend the capture specification.
* | | | | | | | | | | | | | Merge pull request #4474 from lioncash/hle-profileGravatar David2020-08-041-17/+26
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | profile_manager: Make use of designated initializers
| * | | | | | | | | | | | | | profile_manager: Make use of std::nulloptGravatar Lioncash2020-08-031-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Allows some implementations to completely avoid unnecessarily zeroing out the internal buffer.
| * | | | | | | | | | | | | | profile_manager: Make use of designated initializersGravatar Lioncash2020-08-031-13/+22
| | |/ / / / / / / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | More compact code.
* | | | | | | | | | | | | | Merge pull request #4473 from lioncash/cheat-desigGravatar bunnei2020-08-031-105/+121
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | dmnt_cheat_vm: Make use of designated initializers
| * | | | | | | | | | | | | | dmnt_cheat_vm: Make use of designated initializersGravatar Lioncash2020-08-031-105/+121
| |/ / / / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Allows for more compact code.
* | | | | | | | | | | | | | Merge pull request #4456 from Morph1984/stub-really-long-fs-funcGravatar bunnei2020-08-037-63/+120
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | fsp-srv: Stub Read/WriteSaveDataFileSystemExtraDataWithMaskBySaveDataAttribute
| * | | | | | | | | | | | | | minor nitsGravatar Morph2020-07-311-1/+3
| | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | fsp-srv: Stub Read/WriteSaveDataFileSystemExtraDataWithMaskBySaveDataAttributeGravatar Morph2020-07-302-23/+56
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Stub these 2 service commands required for Animal Crossing: New Horizons Update 1.4.0
| * | | | | | | | | | | | | | fs: Rename SaveDataDescriptor to SaveDataAttributeGravatar Morph2020-07-305-41/+63
| | |_|_|_|_|_|/ / / / / / / | |/| | | | | | | | | | | |
* | | | | | | | | | | | | | Merge pull request #4480 from lioncash/optimizeGravatar bunnei2020-08-031-9/+5
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | tests/core_timing: Remove pragma optimize(off)
| * | | | | | | | | | | | | | tests/core_timing: Remove pragma optimize(off)Gravatar Lioncash2020-08-031-9/+5
| | |_|/ / / / / / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | I made a review comment about this in the PR that this was introduced in (#3955, commit 71c4779211dc081a3b2dd4af52edad5748e7a7f5), 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.
* | | | | | | | | | | | | | Merge pull request #4482 from lioncash/ldr-signGravatar bunnei2020-08-031-3/+2
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | service/ldr: Resolve sign mismatch warnings
| * | | | | | | | | | | | | | service/ldr: Resolve sign mismatch warningsGravatar Lioncash2020-08-031-3/+2
| |/ / / / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We were performing an int < size_t comparison. We can just correct the type of the induction variable.
* | | | | | | | | | | | | | Merge pull request #4468 from lioncash/regcacheGravatar bunnei2020-08-031-10/+15
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | registered_cache: Resolve -Wmaybe_uninitialized warnings
| * | | | | | | | | | | | | | registered_cache: Resolve -Wmaybe_uninitialized warningsGravatar Lioncash2020-08-031-10/+15
| | |_|/ / / / / / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | While we're at it, we can avoid a redundant map lookup.
* | | | | | | | | | | | | | Merge pull request #4471 from ogniK5377/sm-getservice-conceptGravatar bunnei2020-08-031-3/+2
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | sm: Make use of IsBaseOf for GetService
| * | | | | | | | | | | | | | sm: Make use of IsBaseOf for GetServiceGravatar David Marcec2020-08-031-3/+2
| | |/ / / / / / / / / / / / | |/| | | | | | | | | | | |
* | | | | | | | | | | | | | Merge pull request #4467 from lioncash/modeGravatar bunnei2020-08-032-18/+21
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / / / / / |/| | | | | | | | | | | | | file_sys/mode: Make use of DECLARE_ENUM_FLAG_OPERATORS with Mode
| * | | | | | | | | | | | | file_sys/mode: Make use of DECLARE_ENUM_FLAG_OPERATORS with ModeGravatar Lioncash2020-08-032-18/+21
| |/ / / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Same behavior, minus a hand-rolled operator.
* | | | | | | | | | | | | ipc: Allow all trivially copyable objects to be passed directly into ↵Gravatar David2020-08-0312-30/+64
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | WriteBuffer (#4465) * ipc: Allow all trivially copyable objects to be passed directly into WriteBuffer With the support of C++20, we can use concepts to deduce if a type is an STL container or not. * More agressive concept for stl containers * Add -fconcepts * Move to common namespace * Add Common::IsBaseOf
* | | | | | | | | | | | | Merge pull request #4263 from lat9nq/fix-screencaps-2Gravatar David2020-08-039-14/+120
|\ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | screenshots: Option to save screenshots immediately in a specified directory + Linux workaround
| * | | | | | | | | | | | | config: Make the save-as identifier more consistentGravatar lat9nq2020-07-261-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Solves an issue with restoring the value upon reloading program.
| * | | | | | | | | | | | | configure_ui: Ensure a separator follows the returned pathGravatar lat9nq2020-07-201-3/+5
| | | | | | | | | | | | | |
| * | | | | | | | | | | | | configure_ui: don't use an empty stringGravatar lat9nq2020-07-201-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If the user had cancelled, it would clear the text box. That behavior was sanitized underneath, but may anyways cause inconveniences.
| * | | | | | | | | | | | | main: Don't use as many string copiesGravatar lat9nq2020-07-201-6/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Co-Authored-By: LC <lioncash@users.noreply.github.com>
| * | | | | | | | | | | | | main: rewrite (save as) screenshot savingGravatar lat9nq2020-07-201-9/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This picks a default directory and file name. If on Windows and save-as screenshot saving is enabled, it asks the user, first defaulting to the default screenshot path, and with a default filename in the format `[title_id]_[year-mt-dy_hr-mn-sc-msc].png`. Otherwise, or on Linux for now, it simply saves a file in that directory with that file name.
| * | | | | | | | | | | | | configuration: Setup UI to config screenshot path and savingGravatar lat9nq2020-07-205-5/+93
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This adds two options to the General -> UI tab. The first disables picking a place to save the file. The second chooses a default directory for saving screenshots.
| * | | | | | | | | | | | | common: Add a screenshots directoryGravatar lat9nq2020-07-203-0/+3
| | |_|_|_|_|/ / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Adds a screenshots directory as a path managed by FileUtil.
* | | | | | | | | | | | | Merge pull request #4439 from lioncash/cpuGravatar David2020-08-031-3/+3
|\ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | cpu_manager: Remove redundant std::function declarations
| * | | | | | | | | | | | | cpu_manager: Remove redundant std::function declarationsGravatar Lioncash2020-07-271-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We can just return the function directly. Making for less reading.
* | | | | | | | | | | | | | Merge pull request #4438 from lioncash/localizingGravatar David2020-08-031-6/+5
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ | |_|_|_|/ / / / / / / / / / |/| | | | | | | | | | | | | yuzu/main: Remove redundant usages of QStringLiteral("")
| * | | | | | | | | | | | | yuzu/main: Remove redundant usages of QStringLiteral("")Gravatar Lioncash2020-07-271-6/+5
| |/ / / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | An empty QStringLiteral can more efficiently be replaced with an empty QString.
* | | | | | | | | | | | | Merge pull request #4392 from lioncash/guardGravatar David2020-07-311-0/+2
|\ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | compatible_formats: Add missing header guard
| * | | | | | | | | | | | | compatible_formats: Add missing header guardGravatar Lioncash2020-07-211-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Prevents potential inclusion issues from occurring.
* | | | | | | | | | | | | | Merge pull request #4396 from lioncash/commaGravatar bunnei2020-07-291-45/+52
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | surface_params: Replace questionable usages of the comma operator with semicolons
| * | | | | | | | | | | | | | surface_params: Make use of designated initializers where applicableGravatar Lioncash2020-07-211-38/+46
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Provides a convenient way to avoid unnecessary zero initializing.
| * | | | | | | | | | | | | | surface_params: Remove redundant assignmentGravatar Lioncash2020-07-211-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is a redundant assignment that can be removed.
| * | | | | | | | | | | | | | surface_params: Replace questionable usages of the comma operator with ↵Gravatar Lioncash2020-07-211-9/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | semicolons These are bugs waiting to happen.