Sign in
dawn
/
dawn
/
e2f35ba8e0a4f8f234660c980a1917f5504482a3
/
.
/
test
/
shader_io
/
fragment_output_builtins_struct.wgsl.expected.wgsl
blob: 86551d3bcd044cf2635dd63d295568fb14cde599 [
file
] [
log
] [
blame
]
struct
FragmentOutputs
{
@builtin
(
frag_depth
)
frag_depth
:
f32
;
@builtin
(
sample_mask
)
sample_mask
:
u32
;
}
@stage
(
fragment
)
fn main
()
->
FragmentOutputs
{
return
FragmentOutputs
(
1.0
,
1u
);
}