7 lines
77 B
GLSL
7 lines
77 B
GLSL
#version 430 core
|
|
out vec4 fColor;
|
|
void main()
|
|
{
|
|
fColor = vec4(0,1,0,1);
|
|
}
|