feature/imgui-sdl
points-test
Last change
on this file since 972aca1 was 8a6d19d, checked in by Dmitry Portnoy <dmitry.portnoy@…>, 8 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:
285 bytes
|
Line | |
---|
1 | #version 330 core
|
---|
2 |
|
---|
3 | // Interpolated values from the vertex shaders
|
---|
4 | in vec3 fragmentColor;
|
---|
5 |
|
---|
6 | // Ouput data
|
---|
7 | out vec3 color;
|
---|
8 |
|
---|
9 | void main(){
|
---|
10 |
|
---|
11 | // Output color = color specified in the vertex shader,
|
---|
12 | // interpolated between all 3 surrounding vertices
|
---|
13 | color = fragmentColor;
|
---|
14 |
|
---|
15 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.