summaryrefslogtreecommitdiffstats
path: root/src/common/settings.h
diff options
context:
space:
mode:
authorlat9nq <22451773+lat9nq@users.noreply.github.com>2023-05-04 02:42:33 +0200
committerlat9nq <22451773+lat9nq@users.noreply.github.com>2023-07-21 16:56:07 +0200
commit5cffa342884df531d911555f7b3db9d2f6d1d1f0 (patch)
tree7f1d36c9f291a528edf9ccf7e85f34d2d108b332 /src/common/settings.h
parentMerge pull request #11096 from german77/amiibooo (diff)
downloadyuzu-5cffa342884df531d911555f7b3db9d2f6d1d1f0.tar
yuzu-5cffa342884df531d911555f7b3db9d2f6d1d1f0.tar.gz
yuzu-5cffa342884df531d911555f7b3db9d2f6d1d1f0.tar.bz2
yuzu-5cffa342884df531d911555f7b3db9d2f6d1d1f0.tar.lz
yuzu-5cffa342884df531d911555f7b3db9d2f6d1d1f0.tar.xz
yuzu-5cffa342884df531d911555f7b3db9d2f6d1d1f0.tar.zst
yuzu-5cffa342884df531d911555f7b3db9d2f6d1d1f0.zip
Diffstat (limited to '')
-rw-r--r--src/common/settings.h11
1 files changed, 9 insertions, 2 deletions
diff --git a/src/common/settings.h b/src/common/settings.h
index 59e96e74f..b8ab34f7f 100644
--- a/src/common/settings.h
+++ b/src/common/settings.h
@@ -16,6 +16,12 @@
namespace Settings {
+enum class AstcDecodeMode : u32 {
+ CPU = 0,
+ GPU = 1,
+ CPUAsynchronous = 2,
+};
+
enum class VSyncMode : u32 {
Immediate = 0,
Mailbox = 1,
@@ -467,8 +473,9 @@ struct Values {
GPUAccuracy::Extreme, "gpu_accuracy"};
SwitchableSetting<bool> use_asynchronous_gpu_emulation{true, "use_asynchronous_gpu_emulation"};
SwitchableSetting<NvdecEmulation> nvdec_emulation{NvdecEmulation::GPU, "nvdec_emulation"};
- SwitchableSetting<bool> accelerate_astc{true, "accelerate_astc"};
- SwitchableSetting<bool> async_astc{false, "async_astc"};
+ SwitchableSetting<AstcDecodeMode, true> accelerate_astc{
+ AstcDecodeMode::CPU, AstcDecodeMode::CPU, AstcDecodeMode::CPUAsynchronous,
+ "accelerate_astc"};
Setting<VSyncMode, true> vsync_mode{VSyncMode::FIFO, VSyncMode::Immediate,
VSyncMode::FIFORelaxed, "use_vsync"};
SwitchableSetting<bool> use_reactive_flushing{true, "use_reactive_flushing"};