9 lines
80 B
GLSL
9 lines
80 B
GLSL
#version 430 core
|
|
|
|
out vec4 Color;
|
|
|
|
void main()
|
|
{
|
|
Color = vec4(1, 0, 0, 1);
|
|
}
|