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