[android] Removed ASTC Decode Method ifdef on Android for a global configuration set to GPU

This commit is contained in:
CamilleLaVey 2026-04-06 18:44:16 -04:00
parent e95b277d0d
commit 795193a217

View file

@ -450,11 +450,7 @@ struct Values {
"max_anisotropy", "max_anisotropy",
Category::RendererAdvanced}; Category::RendererAdvanced};
SwitchableSetting<AstcDecodeMode, true> accelerate_astc{linkage, SwitchableSetting<AstcDecodeMode, true> accelerate_astc{linkage,
#ifdef ANDROID
AstcDecodeMode::Cpu,
#else
AstcDecodeMode::Gpu, AstcDecodeMode::Gpu,
#endif
"accelerate_astc", "accelerate_astc",
Category::RendererAdvanced}; Category::RendererAdvanced};