SPIRV-Cross/shaders/tese/load-array-of-array.tese
Hans-Kristian Arntzen a8d676f2e4 GLSL: Fix issue with array-of-array inputs in tess.
Only one dimension can be unsized and wrong dimension was used for
unrolling purposes.
2019-11-04 10:34:49 +01:00

11 lines
196 B
GLSL

#version 450
layout(ccw, quads) in;
layout(location = 0) in vec4 vTexCoord[][1];
void main()
{
vec4 tmp[gl_MaxPatchVertices][1] = vTexCoord;
gl_Position = tmp[0][0] + tmp[2][0] + tmp[3][0];
}