mirror of
https://github.com/KhronosGroup/glslang
synced 2024-11-08 19:40:06 +00:00
15 lines
154 B
GLSL
15 lines
154 B
GLSL
#version 460
|
|
|
|
out VV
|
|
{
|
|
vec4 val;
|
|
};
|
|
out vec4 color;
|
|
void main()
|
|
{
|
|
val = vec4(0.5);
|
|
color = vec4(1.0);
|
|
gl_Position = vec4(1.0);
|
|
}
|
|
|