Sign in
dawn
/
tint
/
5f6a185d0210fa6adf8bbcc4c2f4f3133e671001
/
.
/
test
/
shader_io
/
fragment_output_builtins_struct.wgsl
blob: a67765f35b9f7daebfbfda7cc40a8a22069f200d [
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
);
}