source:
opengl-game/shaders/SimpleFragmentShader.fragmentshader@
49756cb
Last change on this file since 49756cb was 8a6d19d, checked in by , 8 years ago | |
---|---|
|
|
File size: 124 bytes |
Rev | Line | |
---|---|---|
[8a6d19d] | 1 | #version 330 core |
2 | ||
3 | // Ouput data | |
4 | out vec3 color; | |
5 | ||
6 | void 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.