2022-02-23 21:18:09 +00:00
|
|
|
fn extractBits_e04f5d() {
|
2022-10-25 13:08:45 +00:00
|
|
|
var res : vec3<i32> = extractBits(vec3<i32>(1i), 1u, 1u);
|
2022-02-23 21:18:09 +00:00
|
|
|
}
|
|
|
|
|
2022-06-07 13:55:34 +00:00
|
|
|
@vertex
|
2022-02-23 21:18:09 +00:00
|
|
|
fn vertex_main() -> @builtin(position) vec4<f32> {
|
|
|
|
extractBits_e04f5d();
|
|
|
|
return vec4<f32>();
|
|
|
|
}
|
|
|
|
|
2022-06-07 13:55:34 +00:00
|
|
|
@fragment
|
2022-02-23 21:18:09 +00:00
|
|
|
fn fragment_main() {
|
|
|
|
extractBits_e04f5d();
|
|
|
|
}
|
|
|
|
|
2022-06-07 13:55:34 +00:00
|
|
|
@compute @workgroup_size(1)
|
2022-02-23 21:18:09 +00:00
|
|
|
fn compute_main() {
|
|
|
|
extractBits_e04f5d();
|
|
|
|
}
|