Fix #790: Don't emit NV-specific interface members unless enabled by extension.

This commit is contained in:
John Kessenich
2017-03-24 18:38:16 -06:00
parent 93750bc0a4
commit 0e7378446b
10 changed files with 216 additions and 59 deletions

View File

@@ -0,0 +1,10 @@
#version 450 core
layout(vertices = 4) out;
patch out vec4 patchOut;
void main()
{
gl_in[0].gl_PointSize;
}