summaryrefslogtreecommitdiff
path: root/src/yuzu_cmd/default_ini.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* config: Unify config handling under frontend_commonGravatar t8952023-11-211-553/+0
| | | | | | Replaces every way of handling config for each frontend with SimpleIni. frontend_common's Config class is at the center where it saves and loads all of the cross-platform settings and provides a set of pure virtual functions for platform specific settings. As a result of making config handling platform specific, several parts had to be moved to each platform's own config class or to other parts. Default keys were put in platform specific config classes and translatable strings for Qt were moved to shared_translation. Default hotkeys, default_theme, window geometry, and qt metatypes were moved to uisettings. Additionally, to reduce dependence on Qt, QStrings were converted to std::strings where applicable.
* input_common: Redesign mouse panningGravatar Baptiste Marie2023-06-121-3/+23
|
* android: Frontend: Fix rendering aspect ratio & add a setting for it.Gravatar bunnei2023-06-031-1/+1
|
* textures: add BC1 and BC3 compressors and recompression settingGravatar Liam2023-05-231-0/+4
|
* Settings: add option to enable / disable reactive flushingGravatar Fernando Sahmkow2023-05-071-0/+4
|
* Merge pull request #10125 from lat9nq/vsync-selectGravatar bunnei2023-05-061-2/+8
|\ | | | | configuration: Expose separate swap present modes
| * default_ini: Update V-Sync descriptionGravatar lat9nq2023-05-021-2/+8
| | | | | | | | | | | | default_ini: Update vsync text default_ini: Add tooltip from configure_graphics
* | settings: remove pessimistic flushingGravatar Liam2023-05-031-4/+0
| |
* | Merge pull request #10124 from liamwhite/pebkacGravatar Morph2023-05-031-2/+2
|\ \ | |/ |/| settings: rename extended memory layout to unsafe, move from general to system
| * settings: rename extended memory layout to unsafe, move from general to systemGravatar Liam2023-04-301-2/+2
| |
* | vk_present_manager: Add toggle for async presentationGravatar GPUCode2023-05-011-0/+4
|/
* kernel: switch extended memory setting to 8GB arrangementGravatar Liam2023-04-081-1/+1
|
* configuration: Add async ASTC decode settingGravatar ameerj2023-02-221-0/+4
|
* Update yuzu_cmd's default_ini.hGravatar Matías Locatti2023-02-061-7/+10
| | | Rename FSR, add missing resolution multipliers, and SMAA
* yuzu_cmd: Fix mismatching controller inputGravatar german772023-02-041-0/+13
|
* default_ini: Split and concatenate the config string literalGravatar Morph2023-01-251-2/+8
| | | | We are dangerously close to MSVC's 16384 character limit for string literals. Breaking this string up and concatenating will allow for more settings to be added in the future.
* core: add option to break on unmapped accessGravatar Liam2022-12-021-0/+4
|
* yuzu-cmd: Update configuration file descriptionGravatar german772022-11-261-3/+26
|
* video_core: add option for pessimistic flushingGravatar Liam2022-08-251-0/+4
|
* chore: make yuzu REUSE compliantGravatar Andrea Pappacoda2022-07-271-3/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [REUSE] is a specification that aims at making file copyright information consistent, so that it can be both human and machine readable. It basically requires that all files have a header containing copyright and licensing information. When this isn't possible, like when dealing with binary assets, generated files or embedded third-party dependencies, it is permitted to insert copyright information in the `.reuse/dep5` file. Oh, and it also requires that all the licenses used in the project are present in the `LICENSES` folder, that's why the diff is so huge. This can be done automatically with `reuse download --all`. The `reuse` tool also contains a handy subcommand that analyzes the project and tells whether or not the project is (still) compliant, `reuse lint`. Following REUSE has a few advantages over the current approach: - Copyright information is easy to access for users / downstream - Files like `dist/license.md` do not need to exist anymore, as `.reuse/dep5` is used instead - `reuse lint` makes it easy to ensure that copyright information of files like binary assets / images is always accurate and up to date To add copyright information of files that didn't have it I looked up who committed what and when, for each file. As yuzu contributors do not have to sign a CLA or similar I couldn't assume that copyright ownership was of the "yuzu Emulator Project", so I used the name and/or email of the commit author instead. [REUSE]: https://reuse.software Follow-up to 01cf05bc75b1e47beb08937439f3ed9339e7b254
* yuzu: settings: Remove framerate cap and merge unlocked framerate setting.Gravatar bunnei2022-07-161-7/+0
| | | | - These were all somewhat redundant.
* Merge pull request #8446 from liamwhite/cmd-gdbGravatar Morph2022-06-131-0/+5
|\ | | | | core/debugger: support operation in yuzu-cmd
| * core/debugger: support operation in yuzu-cmdGravatar Liam2022-06-101-0/+5
| |
* | default_ini: Reflect new renderer backend default settingGravatar lat9nq2022-05-291-1/+1
|/
* audio_core: remove time stretcherGravatar Andrea Pappacoda2022-04-011-6/+0
| | | | Also drop the SoundTouch dependency
* default_ini: List use_extended_memory_layout in default config fileGravatar lat9nq2022-03-151-1/+5
|
* dynarmic: Inline exclusive memory accessesGravatar merry2022-02-271-0/+13
| | | | | | | | | | | | | | | Inlines implementation of exclusive instructions into JITted code, improving performance of applications relying heavily on these instructions. We also fastmem these instructions for additional speed, with support for appropriate recompilation on fastmem failure. An unsafe optimization to disable the intercore global_monitor is also provided, should one wish to rely solely on cmpxchg semantics for safety. See also: merryhime/dynarmic#664
* config: Cleanup and documentationGravatar german772021-11-241-15/+2
|
* yuzu_cmd: Read resolution_setup and scaling_filter from configGravatar lat9nq2021-11-161-0/+23
| | | | Also adds descriptions and the settings to the default config.
* config: Read network_interfaceGravatar lat9nq2021-10-151-0/+6
| | | Let's yuzu_cmd use a network interface. Also adds it to the default ini.
* settings: Remove BCAT settingsGravatar Morph2021-09-291-5/+0
|
* configure_graphics: Add GPU nvdec decoding as an optionGravatar ameerj2021-08-161-3/+3
| | | | | | Some system configurations may see visual regressions or lower performance using GPU decoding compared to CPU decoding. This setting provides the option for users to specify their decoding preference. Co-Authored-By: yzct12345 <87620833+yzct12345@users.noreply.github.com>
* Merge pull request #6752 from Morph1984/pt-brGravatar bunnei2021-07-301-1/+1
|\ | | | | service: ns, set: Add PT_BR (Brazilian Portuguese)
| * configure_system: Add Brazilian Portuguese to the list of languagesGravatar Morph2021-07-301-1/+1
| |
* | renderer_vulkan: Add setting to log pipeline statisticsGravatar ReinUsesLisp2021-07-271-0/+4
|/ | | | | | | | | | | | | | | | Use VK_KHR_pipeline_executable_properties when enabled and available to log statistics about the pipeline cache in a game. For example, this is on Turing GPUs when generating a pipeline cache from Super Smash Bros. Ultimate: Average pipeline statistics ========================================== Code size: 6433.167 Register count: 32.939 More advanced results could be presented, at the moment it's just an average of all 3D and compute pipelines.
* Merge pull request #6696 from ameerj/speed-limit-renameGravatar bunnei2021-07-261-3/+3
|\ | | | | general: Rename "Frame Limit" references to "Speed Limit"
| * general: Rename "Frame Limit" references to "Speed Limit"Gravatar ameerj2021-07-231-3/+3
| | | | | | | | | | This setting is best referred to as a speed limit, as it involves the limits of all timing based aspects of the emulator, not only framerate. This allows us to differentiate it from the fps unlocker setting.
* | Merge pull request #6697 from ameerj/fps-capGravatar bunnei2021-07-251-0/+4
|\ \ | | | | | | config, nvflinger: Add FPS cap setting
| * | config, nvflinger: Add FPS cap settingGravatar ameerj2021-07-231-0/+4
| |/ | | | | | | Allows finer tuning of the FPS limit.
* | general: Add setting shader_backendGravatar lat9nq2021-07-221-3/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | GLASM is getting good enough that we can move it out of advanced graphics settings. This removes the setting `use_assembly_shaders`, opting for a enum class `shader_backend`. This comes with the benefits that it is extensible for additional shader backends besides GLSL and GLASM, and this will work better with a QComboBox. Qt removes the related assembly shader setting from the Advanced Graphics section and places it as a new QComboBox in the API Settings group. This will replace the Vulkan device selector when OpenGL is selected. Additionally, mark all of the custom anisotropic filtering settings as "WILL BREAK THINGS", as that is the case with a select few games.
* | shader: Add shader loop safety check settingsGravatar lat9nq2021-07-221-0/+8
|/ | | | Also add a setting for enable Nsight Aftermath.
* yuzu_cmd: Make use of fullscreen_mode settingGravatar lat9nq2021-07-211-0/+4
| | | | | | | Reverts 48259de0c1a6a1aca77eec31cb8aca5ca2b680dd to the previous hierarchy and fixes the resolution issue with this fullscreen mode. yuzu-cmd will now read the fullscreen_mode setting and use it appropriately.
* yuzu_cmd: Add missing or update current settingsGravatar lat9nq2021-07-161-3/+89
| | | | | | | Many settings in common/settings.h are missing from yuzu-cmd, either they were added to default_ini.h but not read in, or vice versa, or the setting was altogether omitted from yuzu-cmd. Some defaults were reported wrong, so those were fixed where noticed.
* default_ini: Remove deprecated settingsGravatar lat9nq2021-07-151-61/+1
| | | | | These settings are not being read in config.cpp AND they do not exist in common/settings.h. Remove their references.
* configure_graphics: Use u8 for bg_color valuesGravatar ameerj2021-07-081-1/+1
|
* configure_audio: Use u8 for volume valueGravatar ameerj2021-07-081-1/+1
|
* Merge pull request #6465 from FernandoS27/sex-on-the-beachGravatar Mai M2021-06-231-0/+4
|\ | | | | GPU: Implement a garbage collector for GPU Caches (project Reaper+)
| * Reaper: Change memory restrictions on TC depending on host memory on VK.Gravatar Fernando Sahmkow2021-06-171-1/+1
| |
| * Reaper: Setup settings and final tuning.Gravatar Fernando Sahmkow2021-06-161-0/+4
| |
* | nvflinger: Add toggle to disable buffer swap interval limitsGravatar ameerj2021-06-171-0/+3
| | | | | | | | | | Enabling this setting will allow some titles to present more frames to the screen as they become available in the nvflinger buffer queue.