Added gl_PerVertex outputs

This commit is contained in:
saschawillems 2016-05-14 21:23:09 +02:00
parent 7087d7d14e
commit fb053a5011
13 changed files with 26 additions and 0 deletions

View file

@ -14,6 +14,12 @@ layout (binding = 0) uniform UBO
layout (location = 0) out vec2 outUV;
out gl_PerVertex
{
vec4 gl_Position;
};
void main()
{
outUV = inUV;