dawn-cmake/test/tint/builtins/gen/literal/extractBits/a99a8d.wgsl.expected.wgsl

20 lines
329 B
WebGPU Shading Language

fn extractBits_a99a8d() {
var res : vec2<i32> = extractBits(vec2<i32>(1i), 1u, 1u);
}
@vertex
fn vertex_main() -> @builtin(position) vec4<f32> {
extractBits_a99a8d();
return vec4<f32>();
}
@fragment
fn fragment_main() {
extractBits_a99a8d();
}
@compute @workgroup_size(1)
fn compute_main() {
extractBits_a99a8d();
}