1
0

10 lines
174 B
Plaintext
Raw Normal View History

2020-02-11 19:01:50 +01:00
#version 460 core
in vec3 col; // the input variable from the vertex shader (same name and same type)
out vec4 outCol;
void main()
{
outCol = vec4(vertexColor, 1.0);
}