GameEngineJava/TestGame/res/shader/testFS.glsl

9 lines
105 B
Text
Raw Normal View History

2023-11-13 21:31:36 +00:00
#version 400 core
in vec4 vertexColor;
out vec4 fragColor;
void main()
{
fragColor = vertexColor;
}