mirror of
https://github.com/KhronosGroup/glslang
synced 2024-11-08 19:40:06 +00:00
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;
|
||
|
}
|