From: Joshua Simmons Date: Sat, 18 Oct 2025 21:38:48 +0000 (+0200) Subject: shark: Switch from fp16 to 8-bit ui buffer X-Git-Url: https://git.nega.tv//gitweb.cgi?a=commitdiff_plain;h=71a3d366f979501eae5bc9c3447cf013b6782e96;p=josh%2Fnarcissus shark: Switch from fp16 to 8-bit ui buffer --- 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,