Sign in
dawn
/
tint
/
5f6a185d0210fa6adf8bbcc4c2f4f3133e671001
/
.
/
test
/
shader_io
/
vertex_input_builtins.wgsl
blob: a73ae88b9e531483c548ed1edf3cca791ecc52b3 [
file
] [
log
] [
blame
]
@stage
(
vertex
)
fn main
(
@builtin
(
vertex_index
)
vertex_index
:
u32
,
@builtin
(
instance_index
)
instance_index
:
u32
,
)
->
@builtin
(
position
)
vec4
<f32>
{
let
foo
:
u32
=
vertex_index
+
instance_index
;
return
vec4
<f32>
();
}