2021-06-03 09:38:34 +00:00
|
|
|
struct VertexInputs0 {
|
2022-01-19 22:46:57 +00:00
|
|
|
@builtin(vertex_index)
|
2022-03-28 14:31:22 +00:00
|
|
|
vertex_index : u32,
|
2022-01-19 22:46:57 +00:00
|
|
|
@location(0)
|
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 VertexInputs1 {
|
2022-01-19 22:46:57 +00:00
|
|
|
@location(2)
|
2022-03-28 14:31:22 +00:00
|
|
|
loc2 : f32,
|
2022-01-19 22:46:57 +00:00
|
|
|
@location(3)
|
2022-03-28 14:31:22 +00:00
|
|
|
loc3 : vec4<f32>,
|
2022-01-19 18:11:17 +00:00
|
|
|
}
|
2021-06-03 09:38:34 +00:00
|
|
|
|
2022-06-07 13:55:34 +00:00
|
|
|
@vertex
|
2022-01-19 22:46:57 +00:00
|
|
|
fn main(inputs0 : VertexInputs0, @location(1) loc1 : u32, @builtin(instance_index) instance_index : u32, inputs1 : VertexInputs1) -> @builtin(position) vec4<f32> {
|
2021-06-03 09:38:34 +00:00
|
|
|
let foo : u32 = (inputs0.vertex_index + instance_index);
|
|
|
|
let i : i32 = inputs0.loc0;
|
|
|
|
let u : u32 = loc1;
|
|
|
|
let f : f32 = inputs1.loc2;
|
|
|
|
let v : vec4<f32> = inputs1.loc3;
|
|
|
|
return vec4<f32>();
|
|
|
|
}
|