Sign in
dawn
/
dawn
/
refs/heads/tint-merge
/
.
/
test
/
tint
/
shader_io
/
fragment_output_builtins_struct.wgsl
blob: 8ef212d0e348a9ee40bdbee2f477438f49b785dc [
file
] [
log
] [
blame
] [
edit
]
struct
FragmentOutputs
{
@builtin
(
frag_depth
)
frag_depth
:
f32
,
@builtin
(
sample_mask
)
sample_mask
:
u32
,
};
@stage
(
fragment
)
fn main
()
->
FragmentOutputs
{
return
FragmentOutputs
(
1.0
,
1u
);
}