diff options
author | lat9nq <22451773+lat9nq@users.noreply.github.com> | 2023-07-24 16:28:13 -0400 |
---|---|---|
committer | lat9nq <22451773+lat9nq@users.noreply.github.com> | 2023-07-24 16:28:13 -0400 |
commit | b1716a9e147f744dfe4bd977f4a5af12f3a2ec0f (patch) | |
tree | 38808ec7901bd3a3c51dac47999cecf0f8cfd768 /src/common | |
parent | ab2921121ec89feb8a926648728beee1551edcf3 (diff) |
settings: Set GPU as default ASTC decoder
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/settings.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/settings.h b/src/common/settings.h index 655f6468a..43ebeae9e 100644 --- a/src/common/settings.h +++ b/src/common/settings.h @@ -226,7 +226,7 @@ struct Values { SwitchableSetting<bool> use_asynchronous_gpu_emulation{ linkage, true, "use_asynchronous_gpu_emulation", Category::Renderer}; SwitchableSetting<AstcDecodeMode, true> accelerate_astc{linkage, - AstcDecodeMode::Cpu, + AstcDecodeMode::Gpu, AstcDecodeMode::Cpu, AstcDecodeMode::CpuAsynchronous, "accelerate_astc", |