blob: 500a094b4584c0ccd308602c6088ab99b7282cb5 [file] [log] [blame]
James Pricebb0496e2021-06-03 09:38:34 +00001struct FragmentOutputs {
Ben Clayton01e4b6f2022-01-19 22:46:57 +00002 @builtin(frag_depth)
James Price3b671cb2022-03-28 14:31:22 +00003 frag_depth : f32,
Ben Clayton01e4b6f2022-01-19 22:46:57 +00004 @builtin(sample_mask)
James Price3b671cb2022-03-28 14:31:22 +00005 sample_mask : u32,
James Price6b1e5f52022-01-19 18:11:17 +00006}
James Pricebb0496e2021-06-03 09:38:34 +00007
Ben Clayton01e4b6f2022-01-19 22:46:57 +00008@stage(fragment)
James Pricebb0496e2021-06-03 09:38:34 +00009fn main() -> FragmentOutputs {
10 return FragmentOutputs(1.0, 1u);
11}