diff options
Diffstat (limited to 'common/shaders/combined_postprocess.wgsl')
| -rw-r--r-- | common/shaders/combined_postprocess.wgsl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/shaders/combined_postprocess.wgsl b/common/shaders/combined_postprocess.wgsl index bf43d6e..c0acfe7 100644 --- a/common/shaders/combined_postprocess.wgsl +++ b/common/shaders/combined_postprocess.wgsl @@ -9,7 +9,7 @@ @group(0) @binding(1) var input_texture: texture_2d<f32>; @group(0) @binding(2) var<uniform> uniforms: UniformsSequenceParams; -@fragment fn fs_main(in: VertexOutput) -> @location(0) vec4<f32> { +@fragment fn fs_main(in: VertexOutput) -> @location(0) vec4f { // Sample base color var color = textureSample(input_texture, input_sampler, in.uv); |
