Browse Source

Merge remote-tracking branch 'origin/dev' into dev

dmuratshin 9 years ago
parent
commit
4f8b99a802
1 changed files with 2 additions and 2 deletions
  1. 2 2
      oxygine/src/math/Matrix.h

+ 2 - 2
oxygine/src/math/Matrix.h

@@ -70,7 +70,7 @@ namespace oxygine
         static MatrixT& perspectiveFovLH(MatrixT& out, T fovy, T aspect, T znear, T zfar);
         static MatrixT& perspectiveFovRH(MatrixT& out, T fovy, T aspect, T znear, T zfar);
 
-        static MatrixT& perspectivOffCenterLH(MatrixT& out, T left, T right, T bottom, T top, T znear, T zfar);
+        static MatrixT& perspectiveOffCenterLH(MatrixT& out, T left, T right, T bottom, T top, T znear, T zfar);
         static MatrixT& perspectiveOffCenterRH(MatrixT& out, T left, T right, T bottom, T top, T znear, T zfar);
 
         static MatrixT& orthoLH(MatrixT& out, T width, T height, T zNear, T zFar);
@@ -434,7 +434,7 @@ namespace oxygine
     }
 
     template <class T>
-    inline MatrixT<T>& MatrixT<T>::perspectivOffCenterLH(MatrixT& out, T left, T right, T bottom, T top, T znearPlane, T zfarPlane)
+    inline MatrixT<T>& MatrixT<T>::perspectiveOffCenterLH(MatrixT& out, T left, T right, T bottom, T top, T znearPlane, T zfarPlane)
     {
         out = matrix(
                   2 * znearPlane / (right - left), 0, 0, 0,