From 71a3d366f979501eae5bc9c3447cf013b6782e96 Mon Sep 17 00:00:00 2001 From: Joshua Simmons Date: Sat, 18 Oct 2025 23:38:48 +0200 Subject: [PATCH] shark: Switch from fp16 to 8-bit ui buffer --- title/shark/src/draw.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/title/shark/src/draw.rs b/title/shark/src/draw.rs index c10c67d..37dac90 100644 --- a/title/shark/src/draw.rs +++ b/title/shark/src/draw.rs @@ -510,7 +510,7 @@ impl<'gpu> DrawState<'gpu> { host_mapped: false, usage: ImageUsageFlags::STORAGE, dimension: ImageDimension::Type2d, - format: ImageFormat::RGBA16_FLOAT, + format: ImageFormat::RGBA8_UNORM, tiling: ImageTiling::Optimal, width, height, -- 2.51.1