bgfx/3rdparty/glslang/Test/spv.noBuiltInLoc.vert
Branimir Karadžić f52fbccb2f Updated glslang.
2017-07-16 09:57:18 -07:00

13 lines
156 B
GLSL

#version 450 core
layout(location = 0)
in vec4 foo;
layout(location = 0)
out vec4 bar;
void main()
{
bar = foo;
gl_Position = foo;
}