Sign in
dawn
/
tint
/
5f6a185d0210fa6adf8bbcc4c2f4f3133e671001
/
.
/
test
/
shader_io
/
vertex_output_builtins_struct.wgsl.expected.wgsl
blob: f08c3a88cc84687b33fbb6c1fa3c703d765f2510 [
file
] [
log
] [
blame
]
struct
VertexOutputs
{
@builtin
(
position
)
position
:
vec4
<f32>
;
}
@stage
(
vertex
)
fn main
()
->
VertexOutputs
{
return
VertexOutputs
(
vec4
<f32>
(
1.0
,
2.0
,
3.0
,
4.0
));
}