8 lines
101 B
GLSL
8 lines
101 B
GLSL
#version 460
|
|
|
|
out vec4 outputColor;
|
|
|
|
void main()
|
|
{
|
|
outputColor = vec4(1.0f, 0.0f, 0.0f, 1.0f);
|
|
}
|