Sign in
dawn
/
dawn
/
368f95a078eeadc547a3b3d1d0a55847130f3404
/
.
/
test
/
tint
/
shader_io
/
fragment_output_locations_struct.wgsl.expected.wgsl
blob: 0ec83404934d26344ff92129a4b4906f88588d74 [
file
] [
log
] [
blame
]
struct
FragmentOutputs
{
@location
(
0
)
loc0
:
i32
,
@location
(
1
)
loc1
:
u32
,
@location
(
2
)
loc2
:
f32
,
@location
(
3
)
loc3
:
vec4
<f32>
,
}
@fragment
fn main
()
->
FragmentOutputs
{
return
FragmentOutputs
(
1
,
1u
,
1.0
,
vec4
<f32>
(
1.0
,
2.0
,
3.0
,
4.0
));
}