From 8fc9eb7e57b168d0c93d42329458a25db2890b11 Mon Sep 17 00:00:00 2001 From: firestar99 Date: Wed, 20 Aug 2025 17:22:10 +0200 Subject: [PATCH] shader-rt: correct RT format, working invert gpu node --- .../src/shader_runtime/per_pixel_adjust_runtime.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node-graph/wgpu-executor/src/shader_runtime/per_pixel_adjust_runtime.rs b/node-graph/wgpu-executor/src/shader_runtime/per_pixel_adjust_runtime.rs index 746e1a900e..119d346956 100644 --- a/node-graph/wgpu-executor/src/shader_runtime/per_pixel_adjust_runtime.rs +++ b/node-graph/wgpu-executor/src/shader_runtime/per_pixel_adjust_runtime.rs @@ -117,7 +117,7 @@ impl PerPixelAdjustGraphicsPipeline { entry_point: Some(&fragment_name), compilation_options: Default::default(), targets: &[Some(ColorTargetState { - format: TextureFormat::Rgba32Float, + format: TextureFormat::Rgba8UnormSrgb, blend: None, write_mask: Default::default(), })],