opengl-test

triangle draw using glfw and opengl
Index Commits Files Refs README LICENSE
main.frag (98B)
   1 #version 330 core
   2 out vec4 fragColor;
   3 
   4 void main() {
   5     fragColor = vec4(1.0f, 0.0f, 0.0f, 1.0f);
   6 }