source:
opengl-game/shaders/SimpleFragmentShader.fragmentshader@
972aca1
Last change on this file since 972aca1 was 8a6d19d, checked in by , 8 years ago | |
---|---|
|
|
File size: 124 bytes |
Line | |
---|---|
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.