Last change
on this file since 321 was
321,
checked in by epyon, 11 years ago
|
- updated all tests to new nova
- cleaned up tests paths
- general cleanup of tests and test data
|
File size:
909 bytes
|
Rev | Line | |
---|
[321] | 1 | #version 120
|
---|
| 2 |
|
---|
| 3 | attribute vec2 nv_texcoord;
|
---|
| 4 | attribute vec3 nv_position;
|
---|
| 5 | attribute vec3 nv_normal;
|
---|
| 6 | attribute vec3 nv_next_position;
|
---|
| 7 | attribute vec3 nv_next_normal;
|
---|
| 8 |
|
---|
| 9 | varying vec3 v_normal;
|
---|
| 10 | varying vec3 v_light_vector;
|
---|
| 11 | varying vec3 v_view_vector;
|
---|
| 12 | varying vec2 v_texcoord;
|
---|
| 13 |
|
---|
| 14 | uniform mat4 nv_m_mvp;
|
---|
| 15 | uniform mat4 nv_m_modelview;
|
---|
| 16 | uniform mat4 nv_m_projection;
|
---|
| 17 | uniform mat3 nv_m_normal;
|
---|
| 18 | uniform float nv_interpolate;
|
---|
| 19 | uniform vec3 light_position;
|
---|
| 20 |
|
---|
| 21 | void main(void) {
|
---|
| 22 | vec4 vertex = vec4( mix( nv_position, nv_next_position, nv_interpolate ), 1.0 );
|
---|
| 23 | v_normal = normalize( nv_m_normal * mix( nv_normal, nv_next_normal, nv_interpolate ) );
|
---|
| 24 |
|
---|
| 25 | vec3 eye_pos = vec3( nv_m_modelview * vertex );
|
---|
| 26 | v_light_vector = vec3( normalize( light_position - eye_pos ) );
|
---|
| 27 | v_view_vector = vec3( normalize( -eye_pos ) );
|
---|
| 28 |
|
---|
| 29 | v_texcoord = nv_texcoord;
|
---|
| 30 | gl_Position = nv_m_mvp * vertex;
|
---|
| 31 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.