source: opengl-game/shaders/SimpleFragmentShader.fragmentshader@ 22b2c37

feature/imgui-sdl points-test
Last change on this file since 22b2c37 was 8a6d19d, checked in by Dmitry Portnoy <dmitry.portnoy@…>, 7 years ago

Implement movement in a basic 3D scene and add some examples from the new OpenGL tutorials site

  • Property mode set to 100644
File size: 124 bytes
RevLine 
[8a6d19d]1#version 330 core
2
3// Ouput data
4out vec3 color;
5
6void main()
7{
8
9 // Output color = red
10 color = vec3(1,0,0);
11
12}
Note: See TracBrowser for help on using the repository browser.