diff options
Diffstat (limited to 'assets/shaders/Basic.vert.glsl')
-rwxr-xr-x | assets/shaders/Basic.vert.glsl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/assets/shaders/Basic.vert.glsl b/assets/shaders/Basic.vert.glsl index ae454411..80b2f088 100755 --- a/assets/shaders/Basic.vert.glsl +++ b/assets/shaders/Basic.vert.glsl | |||
@@ -39,7 +39,7 @@ attribute vec3 a_pos; | |||
39 | attribute vec2 texcoord; | 39 | attribute vec2 texcoord; |
40 | 40 | ||
41 | // varying | 41 | // varying |
42 | varying vec2 v_texCoord0; | 42 | varying vec2 v_texCoord0; |
43 | 43 | ||
44 | // matrix uniforms | 44 | // matrix uniforms |
45 | uniform mat4 u_mvMatrix; | 45 | uniform mat4 u_mvMatrix; |
@@ -48,6 +48,6 @@ uniform mat4 u_worldMatrix; | |||
48 | 48 | ||
49 | void main(void) | 49 | void main(void) |
50 | { | 50 | { |
51 | v_texCoord0 = texcoord; | 51 | v_texCoord0 = texcoord; |
52 | gl_Position = u_projMatrix * u_mvMatrix * vec4(a_pos,1.0) ; | 52 | gl_Position = u_projMatrix * u_mvMatrix * vec4(a_pos,1.0) ; |
53 | } | 53 | } |