source: opengl-game/color.frag@ 267c4c5

feature/imgui-sdl points-test
Last change on this file since 267c4c5 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
RevLine 
[ec4456b]1#version 410
2
[8b7cfcf]3in vec3 color;
[485424b]4
[8b7cfcf]5out vec4 frag_color;
[ec4456b]6
7void main() {
[8b7cfcf]8 frag_color = vec4(color, 1.0);
[ec4456b]9}
Note: See TracBrowser for help on using the repository browser.