7 lines
78 B
GLSL
7 lines
78 B
GLSL
#version 450
|
|
layout(location = 0) out vec4 V;
|
|
void main()
|
|
{
|
|
V = vec4(1.0);
|
|
}
|