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