mirror of
https://github.com/KhronosGroup/glslang
synced 2024-11-09 20:10:06 +00:00
14 lines
127 B
GLSL
14 lines
127 B
GLSL
#version 150
|
|
|
|
in vec4 BaseColor;
|
|
|
|
vec4 foo()
|
|
{
|
|
return BaseColor;
|
|
}
|
|
|
|
void main()
|
|
{
|
|
gl_FragColor = foo();
|
|
}
|