From 472c2258dbeca000a454ea1781f09df63477563e Mon Sep 17 00:00:00 2001 From: skal Date: Sat, 28 Feb 2026 02:39:04 +0100 Subject: replace wgsl type: vec4 -> vec4f .. --- common/shaders/passthrough.wgsl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'common/shaders/passthrough.wgsl') diff --git a/common/shaders/passthrough.wgsl b/common/shaders/passthrough.wgsl index 265082a..bce377c 100644 --- a/common/shaders/passthrough.wgsl +++ b/common/shaders/passthrough.wgsl @@ -6,6 +6,6 @@ @group(0) @binding(1) var input_texture: texture_2d; @group(0) @binding(2) var uniforms: UniformsSequenceParams; -@fragment fn fs_main(in: VertexOutput) -> @location(0) vec4 { +@fragment fn fs_main(in: VertexOutput) -> @location(0) vec4f { return textureSample(input_texture, input_sampler, in.uv); } -- cgit v1.2.3