diff --git a/include/bx/fpumath.h b/include/bx/fpumath.h index 356b02b..e88ad6a 100644 --- a/include/bx/fpumath.h +++ b/include/bx/fpumath.h @@ -685,32 +685,32 @@ namespace bx inline void mtxProj(float* _result, const float _fov[4], float _near, float _far, bool _oglNdc = false) { - mtxProj_impl(_result, _fov, _near, _far, _oglNdc); + mtxProj_impl(_result, _fov, _near, _far, _oglNdc); } inline void mtxProjLh(float* _result, const float _fov[4], float _near, float _far, bool _oglNdc = false) { - mtxProj_impl(_result, _fov, _near, _far, _oglNdc); + mtxProj_impl(_result, _fov, _near, _far, _oglNdc); } inline void mtxProjRh(float* _result, const float _fov[4], float _near, float _far, bool _oglNdc = false) { - mtxProj_impl(_result, _fov, _near, _far, _oglNdc); + mtxProj_impl(_result, _fov, _near, _far, _oglNdc); } inline void mtxProj(float* _result, float _fovy, float _aspect, float _near, float _far, bool _oglNdc = false) { - mtxProj_impl(_result, _fovy, _aspect, _near, _far, _oglNdc); + mtxProj_impl(_result, _fovy, _aspect, _near, _far, _oglNdc); } inline void mtxProjLh(float* _result, float _fovy, float _aspect, float _near, float _far, bool _oglNdc = false) { - mtxProj_impl(_result, _fovy, _aspect, _near, _far, _oglNdc); + mtxProj_impl(_result, _fovy, _aspect, _near, _far, _oglNdc); } inline void mtxProjRh(float* _result, float _fovy, float _aspect, float _near, float _far, bool _oglNdc = false) { - mtxProj_impl(_result, _fovy, _aspect, _near, _far, _oglNdc); + mtxProj_impl(_result, _fovy, _aspect, _near, _far, _oglNdc); } struct NearFar