mirror of
https://github.com/KhronosGroup/glslang
synced 2024-11-08 11:30:06 +00:00
82e95a3aa5
Fix #1019.
15 lines
176 B
GLSL
15 lines
176 B
GLSL
#version 450 core
|
|
|
|
layout(location = 0)
|
|
in vec4 foo;
|
|
|
|
layout(location = 0)
|
|
out vec4 bar;
|
|
|
|
uniform vec4 uv;
|
|
|
|
void main()
|
|
{
|
|
bar = foo;
|
|
gl_Position = foo;
|
|
} |