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