Skip to content

Commit

Permalink
Fixed error in Unfiform set method
Browse files Browse the repository at this point in the history
  • Loading branch information
robertosfield committed Dec 3, 2012
1 parent 72aa75d commit d3501dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/osg/Uniform
Expand Up @@ -374,7 +374,7 @@ class Matrix4x3Template : public MatrixTemplate<T, 4, 3>
value_type a20, value_type a21, value_type a22,
value_type a30, value_type a31, value_type a32 )
{
base_class::_mat[0][0]=a00; base_class::_mat[0][1]=a01; base_class::_mat[0][2]=a01;
base_class::_mat[0][0]=a00; base_class::_mat[0][1]=a01; base_class::_mat[0][2]=a02;
base_class::_mat[1][0]=a10; base_class::_mat[1][1]=a11; base_class::_mat[1][2]=a12;
base_class::_mat[2][0]=a20; base_class::_mat[2][1]=a21; base_class::_mat[2][2]=a22;
base_class::_mat[3][0]=a30; base_class::_mat[3][1]=a31; base_class::_mat[3][2]=a32;
Expand Down

0 comments on commit d3501dc

Please sign in to comment.