SPIRV-Cross/shaders-msl-no-opt/comp/trivial-select-cast-vector.comp
Hans-Kristian Arntzen 6071df5840 Fix wrong detection of trivial_mix_op.
Effectively, only the last component of the select was considered, need
to correctly early out if any case is hit.
2021-10-13 15:34:00 +02:00

15 lines
199 B
Plaintext

#version 450
layout(local_size_x = 1) in;
layout(set = 0, binding = 0) buffer A
{
vec3 a;
vec3 b;
};
void main()
{
bvec3 c = lessThan(b, vec3(1.0));
a = mix(vec3(1, 0, 0), vec3(0, 0, 1), c);
}