From e34a56c963424776432807b1c1a22821bd82cef0 Mon Sep 17 00:00:00 2001 From: Benjamin Brienen Date: Thu, 26 Sep 2024 15:32:33 +0200 Subject: [PATCH] Better info message (#15432) # Objective Fixes the confusion that caused #5660 ## Solution Make it clear that it is the hardware which doesn't support the format and not bevy's fault. --- examples/3d/skybox.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/examples/3d/skybox.rs b/examples/3d/skybox.rs index 115d378e2e2d6..12b22ae2e853d 100644 --- a/examples/3d/skybox.rs +++ b/examples/3d/skybox.rs @@ -127,7 +127,10 @@ fn cycle_cubemap_asset( if supported_compressed_formats.contains(CUBEMAPS[new_index].1) { break; } - info!("Skipping unsupported format: {:?}", CUBEMAPS[new_index]); + info!( + "Skipping format which is not supported by current hardware: {:?}", + CUBEMAPS[new_index] + ); } // Skip swapping to the same texture. Useful for when ktx2, zstd, or compressed texture support