Sign in
dawn
/
dawn
/
0c6860a5c51c9db880add0b0306b62b64496e985
/
.
/
test
/
tint
/
benchmark
/
simple-vertex.wgsl
blob: 45b6bce4da673771e500b7090e6b4288390d3ad8 [
file
] [
log
] [
blame
]
struct
Input
{
@location
(
0
)
position
:
vec4
<f32>
,
};
struct
Output
{
@builtin
(
position
)
position
:
vec4
<f32>
,
};
@vertex
fn main
(
in
:
Input
)
->
Output
{
return
Output
(
in
.
position
);
}