Sign in
dawn
/
tint
/
b4cd255c6ecc8db6d49274b8de378b33c478c629
/
.
/
test
/
benchmark
/
simple_fragment.wgsl.expected.wgsl
blob: 19b9e9985ad83211380e7d39b12e8349276ac9ca [
file
] [
log
] [
blame
]
struct
Input
{
@location
(
0
)
color
:
vec4
<f32>
;
}
struct
Output
{
@location
(
0
)
color
:
vec4
<f32>
;
}
@stage
(
fragment
)
fn main
(
in
:
Input
)
->
Output
{
return
Output
(
in
.
color
);
}