dawn-cmake/test/tint/builtins/gen/literal/all/353d6a.wgsl.expected.wgsl

20 lines
267 B
WebGPU Shading Language

fn all_353d6a() {
var res : bool = all(true);
}
@vertex
fn vertex_main() -> @builtin(position) vec4<f32> {
all_353d6a();
return vec4<f32>();
}
@fragment
fn fragment_main() {
all_353d6a();
}
@compute @workgroup_size(1)
fn compute_main() {
all_353d6a();
}