source:
opengl-game/color.vert@
07ed460
Last change on this file since 07ed460 was 7280257, checked in by , 7 years ago | |
---|---|
|
|
File size: 260 bytes |
Rev | Line | |
---|---|---|
[ec4456b] | 1 | #version 410 |
2 | ||
[7ee66ea] | 3 | uniform mat4 model, view, proj; |
[93baa0e] | 4 | |
[d0b9596] | 5 | layout(location = 0) in vec3 vertex_position; |
6 | layout(location = 1) in vec3 vertex_color; | |
[8b7cfcf] | 7 | |
8 | out vec3 color; | |
[ec4456b] | 9 | |
10 | void main() { | |
[8b7cfcf] | 11 | color = vertex_color; |
[7ee66ea] | 12 | gl_Position = proj * view * model * vec4(vertex_position, 1.0); |
[ec4456b] | 13 | } |
Note:
See TracBrowser
for help on using the repository browser.