mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-05-17 04:41:23 +00:00
Bug: tint:1802 Change-Id: Ie9baa045feda08523e5ca4f5ce94b6db7d4477e5 Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/119100 Commit-Queue: Antonio Maiorano <amaiorano@google.com> Kokoro: Kokoro <noreply+kokoro@google.com> Reviewed-by: Ben Clayton <bclayton@google.com>
24 lines
598 B
GLSL
24 lines
598 B
GLSL
#version 310 es
|
|
|
|
ivec3 tint_mod(int lhs, ivec3 rhs) {
|
|
ivec3 l = ivec3(lhs);
|
|
ivec3 rhs_or_one = mix(rhs, ivec3(1), bvec3(uvec3(equal(rhs, ivec3(0))) | uvec3(bvec3(uvec3(equal(l, ivec3(-2147483648))) & uvec3(equal(rhs, ivec3(-1)))))));
|
|
if (any(notEqual((uvec3((l | rhs_or_one)) & uvec3(2147483648u)), uvec3(0u)))) {
|
|
return (l - ((l / rhs_or_one) * rhs_or_one));
|
|
} else {
|
|
return (l % rhs_or_one);
|
|
}
|
|
}
|
|
|
|
void f() {
|
|
int a = 4;
|
|
ivec3 b = ivec3(1, 2, 3);
|
|
ivec3 r = tint_mod(a, b);
|
|
}
|
|
|
|
layout(local_size_x = 1, local_size_y = 1, local_size_z = 1) in;
|
|
void main() {
|
|
f();
|
|
return;
|
|
}
|