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