2021-06-03 09:38:34 +00:00
|
|
|
struct FragmentInputs0 {
|
2022-01-19 22:46:57 +00:00
|
|
|
@builtin(position)
|
2022-03-28 14:31:22 +00:00
|
|
|
position : vec4<f32>,
|
2022-01-19 22:46:57 +00:00
|
|
|
@location(0) @interpolate(flat)
|
2022-03-28 14:31:22 +00:00
|
|
|
loc0 : i32,
|
2022-01-19 18:11:17 +00:00
|
|
|
}
|
2021-06-03 09:38:34 +00:00
|
|
|
|
|
|
|
struct FragmentInputs1 {
|
2022-01-19 22:46:57 +00:00
|
|
|
@location(3)
|
2022-03-28 14:31:22 +00:00
|
|
|
loc3 : vec4<f32>,
|
2022-01-19 22:46:57 +00:00
|
|
|
@builtin(sample_mask)
|
2022-03-28 14:31:22 +00:00
|
|
|
sample_mask : u32,
|
2022-01-19 18:11:17 +00:00
|
|
|
}
|
2021-06-03 09:38:34 +00:00
|
|
|
|
2022-06-07 13:55:34 +00:00
|
|
|
@fragment
|
2022-01-19 22:46:57 +00:00
|
|
|
fn main(inputs0 : FragmentInputs0, @builtin(front_facing) front_facing : bool, @location(1) @interpolate(flat) loc1 : u32, @builtin(sample_index) sample_index : u32, inputs1 : FragmentInputs1, @location(2) loc2 : f32) {
|
2021-06-03 09:38:34 +00:00
|
|
|
if (front_facing) {
|
|
|
|
let foo : vec4<f32> = inputs0.position;
|
|
|
|
let bar : u32 = (sample_index + inputs1.sample_mask);
|
|
|
|
let i : i32 = inputs0.loc0;
|
|
|
|
let u : u32 = loc1;
|
|
|
|
let f : f32 = loc2;
|
|
|
|
let v : vec4<f32> = inputs1.loc3;
|
|
|
|
}
|
|
|
|
}
|