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