source: opengl-game/color.frag@ 046ce72

feature/imgui-sdl points-test
Last change on this file since 046ce72 was 485424b, checked in by Dmitry Portnoy <dmitry.portnoy@…>, 7 years ago

Add support for loading and applying texture and add a square to the scene with a demo texture

  • Property mode set to 100644
File size: 101 bytes
Line 
1#version 410
2
3in vec3 color;
4
5out vec4 frag_color;
6
7void main() {
8 frag_color = vec4(color, 1.0);
9}
Note: See TracBrowser for help on using the repository browser.