blob: ec9c1ab10ba49b2e43840464dd03e1d80b31701d [file] [log] [blame]
fn extractBits_12b197() {
var res : vec3<u32> = extractBits(vec3<u32>(1u), 1u, 1u);
}
@vertex
fn vertex_main() -> @builtin(position) vec4<f32> {
extractBits_12b197();
return vec4<f32>();
}
@fragment
fn fragment_main() {
extractBits_12b197();
}
@compute @workgroup_size(1)
fn compute_main() {
extractBits_12b197();
}