mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-05-14 19:31:25 +00:00
CTS tests: https://github.com/gpuweb/cts/pull/1012 Bug: tint:1371 Change-Id: Idd55c0bc9dad1dffb558d0bc57d744f65e9041b5 Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/81701 Kokoro: Kokoro <noreply+kokoro@google.com> Reviewed-by: David Neto <dneto@google.com>
22 lines
529 B
HLSL
22 lines
529 B
HLSL
int3 tint_insert_bits(int3 v, int3 n, uint offset, uint count) {
|
|
const uint s = min(offset, 32u);
|
|
const uint e = min(32u, (s + count));
|
|
const uint mask = (((1u << s) - 1u) ^ ((1u << e) - 1u));
|
|
return (((n << uint3((s).xxx)) & int3((int(mask)).xxx)) | (v & int3((int(~(mask))).xxx)));
|
|
}
|
|
|
|
void f_1() {
|
|
int3 v = int3(0, 0, 0);
|
|
int3 n = int3(0, 0, 0);
|
|
uint offset_1 = 0u;
|
|
uint count = 0u;
|
|
const int3 x_16 = tint_insert_bits(v, n, offset_1, count);
|
|
return;
|
|
}
|
|
|
|
[numthreads(1, 1, 1)]
|
|
void f() {
|
|
f_1();
|
|
return;
|
|
}
|