Tests: strengthen the value of test for NV members.

This commit is contained in:
John Kessenich 2017-03-24 18:57:50 -06:00
parent 0e7378446b
commit 9fb31ce8ec
3 changed files with 46 additions and 41 deletions

View file

@ -2,19 +2,11 @@
layout(triangles) in;
in gl_PerVertex {
float gl_PointSize;
} gl_in[];
out gl_PerVertex {
float gl_PointSize;
};
layout(line_strip) out;
layout(max_vertices = 127) out;
layout(invocations = 4) in;
void main()
{
float p = gl_in[1].gl_PointSize;
gl_PointSize = gl_in[1].gl_PointSize;
}