From 795193a2176c4ea6eb0a1e5bf8f6118146b916a8 Mon Sep 17 00:00:00 2001 From: CamilleLaVey Date: Mon, 6 Apr 2026 18:44:16 -0400 Subject: [PATCH] [android] Removed ASTC Decode Method ifdef on Android for a global configuration set to GPU --- src/common/settings.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/common/settings.h b/src/common/settings.h index 2540282790..c016f6d143 100644 --- a/src/common/settings.h +++ b/src/common/settings.h @@ -450,11 +450,7 @@ struct Values { "max_anisotropy", Category::RendererAdvanced}; SwitchableSetting accelerate_astc{linkage, -#ifdef ANDROID - AstcDecodeMode::Cpu, -#else AstcDecodeMode::Gpu, -#endif "accelerate_astc", Category::RendererAdvanced};