blob: 93cfec8944a5917a785b1c162fc622a4df0f2f09 [file] [log] [blame]
James Price545f4e02021-06-28 23:04:43 +00001struct In {
James Price3b671cb2022-03-28 14:31:22 +00002 @location(0) none : f32,
3 @location(1) @interpolate(flat) flat : f32,
4 @location(2) @interpolate(perspective, center) perspective_center : f32,
5 @location(3) @interpolate(perspective, centroid) perspective_centroid : f32,
6 @location(4) @interpolate(perspective, sample) perspective_sample : f32,
7 @location(5) @interpolate(linear, center) linear_center : f32,
8 @location(6) @interpolate(linear, centroid) linear_centroid : f32,
9 @location(7) @interpolate(linear, sample) linear_sample : f32,
James Price545f4e02021-06-28 23:04:43 +000010};
11
dan sinclairb29892b2022-06-07 13:55:34 +000012@fragment
James Price545f4e02021-06-28 23:04:43 +000013fn main(in : In) {
14}