Browse Source

Ticket #176, workaround for Intel compiler which has a bug with lookAt

Christophe Riccio 13 years ago
parent
commit
535f67e45e
1 changed files with 2 additions and 4 deletions
  1. 2 4
      glm/gtc/matrix_transform.inl

+ 2 - 4
glm/gtc/matrix_transform.inl

@@ -402,11 +402,9 @@ namespace glm
 		Result[0][2] =-f.x;
 		Result[1][2] =-f.y;
 		Result[2][2] =-f.z;
-	/*  Test this instead of translate3D
 		Result[3][0] =-dot(s, eye);
-		Result[3][1] =-dot(y, eye);
+		Result[3][1] =-dot(u, eye);
 		Result[3][2] = dot(f, eye);
-	*/  
-		return translate(Result, -eye);
+		return Result;
 	}
 }//namespace glm