engine/res/engine/shaders/test.frag
2023-03-12 17:11:13 +00:00

10 lines
110 B
GLSL

#version 450
layout(location = 0) out vec4 outColor;
void main()
{
outColor = vec4(0.0, 0.0, 1.0, 1.0);
}