Sign in
dawn
/
tint
/
refs/heads/chromium/4850
/
.
/
test
/
benchmark
/
simple-fragment.wgsl.expected.wgsl
blob: 19b9e9985ad83211380e7d39b12e8349276ac9ca [
file
] [
log
] [
blame
] [
edit
]
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
);
}