dawn-cmake/test/tint/builtins/gen/extractBits/a99a8d.wgsl.expected.wgsl
Ben Clayton d868e860e0 builtins: Add extractBits
CTS tests: https://github.com/gpuweb/cts/pull/1005

Bug: tint:1371
Change-Id: I228c7b2a27c6fbac0653c416fac603a6fb4bff85
Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/81640
Reviewed-by: David Neto <dneto@google.com>
Kokoro: Kokoro <noreply+kokoro@google.com>
2022-02-23 21:18:09 +00:00

20 lines
348 B
WebGPU Shading Language

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();
}