From 1b29db0dafc40613cb54e9a13544f6deec633928 Mon Sep 17 00:00:00 2001 From: Quaternions Date: Thu, 28 Sep 2023 10:58:51 -0700 Subject: [PATCH] BC is required rn --- src/main.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index ec2df754..8f3dd68f 100644 --- a/src/main.rs +++ b/src/main.rs @@ -240,7 +240,9 @@ impl framework::Example for GraphicsData { fn optional_features() -> wgpu::Features { wgpu::Features::TEXTURE_COMPRESSION_ASTC | wgpu::Features::TEXTURE_COMPRESSION_ETC2 - | wgpu::Features::TEXTURE_COMPRESSION_BC + } + fn required_features() -> wgpu::Features { + wgpu::Features::TEXTURE_COMPRESSION_BC } fn required_limits() -> wgpu::Limits { wgpu::Limits::default() //framework.rs was using goofy limits that caused me a multi-day headache