Fix colons

This commit is contained in:
Andras Schmelczer 2023-04-29 21:21:34 +01:00
parent 99e1923066
commit 15836f2876
No known key found for this signature in database
GPG key ID: FC8F2C3D3D1A718C
5 changed files with 49 additions and 49 deletions

View file

@ -1,12 +1,12 @@
struct VertexOutput {
@builtin(position) position : vec4<f32>,
@location(0) uv : vec2<f32>,
@builtin(position) position: vec4<f32>,
@location(0) uv: vec2<f32>,
}
@vertex
fn vertex(
@location(0) position : vec2<f32>,
@location(1) uv : vec2<f32>
@location(0) position: vec2<f32>,
@location(1) uv: vec2<f32>
) -> VertexOutput {
return VertexOutput(vec4(position, 0.0, 1.0), uv);
}