blob: ad050902ec89f5d5c26a8802cc687cb2cb2d0725 [file]
#version 310 es
ivec3 tint_div_v3i32(ivec3 lhs, ivec3 rhs) {
uvec3 v = uvec3(equal(lhs, ivec3((-2147483647 - 1))));
bvec3 v_1 = bvec3((v & uvec3(equal(rhs, ivec3(-1)))));
uvec3 v_2 = uvec3(equal(rhs, ivec3(0)));
return (lhs / mix(rhs, ivec3(1), bvec3((v_2 | uvec3(v_1)))));
}
layout(local_size_x = 1, local_size_y = 1, local_size_z = 1) in;
void main() {
ivec3 a = ivec3(1, 2, 3);
int b = 0;
ivec3 v_3 = a;
int v_4 = b;
uint v_5 = uint(b);
ivec3 r = tint_div_v3i32(v_3, ivec3(int((v_5 + uint(v_4)))));
}