mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-05-16 12:21:35 +00:00
mix of ivec is not core until later GLSL versions. Just polyfill in the writer with ternary ops. Change-Id: Ia0c35bf95842e03ef8447019f3264d01c11fd384 Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/123240 Commit-Queue: Ben Clayton <bclayton@google.com> Reviewed-by: Stephen White <senorblanco@chromium.org> Kokoro: Ben Clayton <bclayton@google.com>
28 lines
729 B
GLSL
28 lines
729 B
GLSL
#version 310 es
|
|
|
|
ivec4 tint_select(ivec4 param_0, ivec4 param_1, bvec4 param_2) {
|
|
return ivec4(param_2[0] ? param_1[0] : param_0[0], param_2[1] ? param_1[1] : param_0[1], param_2[2] ? param_1[2] : param_0[2], param_2[3] ? param_1[3] : param_0[3]);
|
|
}
|
|
|
|
|
|
layout(local_size_x = 1, local_size_y = 1, local_size_z = 1) in;
|
|
void unused_entry_point() {
|
|
return;
|
|
}
|
|
struct S {
|
|
ivec4 a;
|
|
};
|
|
|
|
layout(binding = 0, std430) buffer v_block_ssbo {
|
|
S inner;
|
|
} v;
|
|
|
|
ivec4 tint_div(ivec4 lhs, ivec4 rhs) {
|
|
return (lhs / tint_select(rhs, ivec4(1), bvec4(uvec4(equal(rhs, ivec4(0))) | uvec4(bvec4(uvec4(equal(lhs, ivec4((-2147483647 - 1)))) & uvec4(equal(rhs, ivec4(-1))))))));
|
|
}
|
|
|
|
void foo() {
|
|
v.inner.a = tint_div(v.inner.a, ivec4(2));
|
|
}
|
|
|