1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
/* [config]
* expect_result: pass
* glsl_version: 1.20
* require_extensions: GL_ARB_arrays_of_arrays
* [end config]
*
* From page 35 (page 41 of the PDF) of the GLSL 1.20 spec:
*
* "The equality operators and assignment operator are only allowed if the
* two operands are same size and type....Both array operands must be
* explicitly sized. When using the equality operators ... two arrays are
* equal if and only if all the elements are element-wise equal.
*/
#version 120
#extension GL_ARB_arrays_of_arrays: enable
uniform vec4 a[2][3];
uniform vec4 b[2][3];
uniform vec4[3] c[2];
void main()
{
gl_Position = vec4(float(a == b), float(b == c), 0, 1);
}
|