Skip to content

Commit

Permalink
Merge pull request #10583 from bdysvik/patch-1
Browse files Browse the repository at this point in the history
Updating parameter name position
  • Loading branch information
mrdoob committed Jan 16, 2017
2 parents 964092b + 2b56100 commit a61bcff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/models/gltf/snowflake/line_vert.glsl
Expand Up @@ -9,7 +9,7 @@ uniform mat4 u_modelViewMatrix;
uniform mat4 u_projectionMatrix;

void main(void) {
vec4 pos = u_modelViewMatrix * vec4(position,1.0);
vec4 pos = u_modelViewMatrix * vec4(a_position,1.0);
v_color = a_color;
gl_Position = u_projectionMatrix * pos;
}
}

0 comments on commit a61bcff

Please sign in to comment.