Sign in
dawn
/
tint
/
refs/heads/chromium/4850
/
.
/
test
/
benchmark
/
simple-fragment.wgsl
blob: 3fe67bfdae447406fa2193882946673de36ec6a6 [
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
);
}