Sign in
dawn
/
dawn
/
1e1834a4ce8b8f90fdf2fe50919dc992d7bfac8f
/
.
/
test
/
tint
/
benchmark
/
simple-fragment.wgsl
blob: 73e8ff87a830cda818c87cee5d87edda4e865647 [
file
] [
log
] [
blame
]
struct
Input
{
@location
(
0
)
color
:
vec4
<f32>
,
};
struct
Output
{
@location
(
0
)
color
:
vec4
<f32>
,
};
@fragment
fn main
(
in
:
Input
)
->
Output
{
return
Output
(
in
.
color
);
}