fix(wgsl): indent first parameter of function definition

This commit is contained in:
Riley Bruins 2024-11-03 21:13:52 -08:00 committed by Christian Clason
parent 7dc8aabe86
commit 0d3426a2e8
3 changed files with 37 additions and 2 deletions

View file

@ -41,3 +41,20 @@ fn vertex(vertex: Vertex,
out.b = 2;
return out;
}
fn foo(
a: u32,
b: u32,
) {
return a;
}
fn bar(
) {}
fn baz(
a: u32,
) {}
fn qux(
)