| fn select_9b478d() { | |
| const arg_0 = 1; | |
| const arg_1 = 1; | |
| var arg_2 = true; | |
| var res = select(arg_0, arg_1, arg_2); | |
| } | |
| @fragment | |
| fn fragment_main() { | |
| select_9b478d(); | |
| } | |
| @compute @workgroup_size(1) | |
| fn compute_main() { | |
| select_9b478d(); | |
| } | |
| struct VertexOutput { | |
| @builtin(position) | |
| pos : vec4<f32>, | |
| } | |
| @vertex | |
| fn vertex_main() -> VertexOutput { | |
| var out : VertexOutput; | |
| out.pos = vec4<f32>(); | |
| select_9b478d(); | |
| return out; | |
| } |