summaryrefslogtreecommitdiffhomepage
path: root/examples/oculus_glfw_sample/OculusSDK/LibOVR/Include/Extras/OVR_Math.h
diff options
context:
space:
mode:
authorraysan5 <[email protected]>2016-05-31 20:08:36 +0200
committerraysan5 <[email protected]>2016-05-31 20:08:36 +0200
commit8f91ed81c58fd5cdbeda4db5478649bd677712da (patch)
treee5dfd2e4784aff7630df89f392fd1498f1bfad7d /examples/oculus_glfw_sample/OculusSDK/LibOVR/Include/Extras/OVR_Math.h
parentd17a0cee1aa53978387e68be58d901bffd1ac0a9 (diff)
downloadraylib-8f91ed81c58fd5cdbeda4db5478649bd677712da.tar.gz
raylib-8f91ed81c58fd5cdbeda4db5478649bd677712da.zip
Updated Oculus sample to Oculus SDK 1.4
Still working on the sample but almost finished. Some rlgl internals redesign required and it will be ready!
Diffstat (limited to 'examples/oculus_glfw_sample/OculusSDK/LibOVR/Include/Extras/OVR_Math.h')
-rw-r--r--examples/oculus_glfw_sample/OculusSDK/LibOVR/Include/Extras/OVR_Math.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/oculus_glfw_sample/OculusSDK/LibOVR/Include/Extras/OVR_Math.h b/examples/oculus_glfw_sample/OculusSDK/LibOVR/Include/Extras/OVR_Math.h
index 3a8a8045..c182ed5b 100644
--- a/examples/oculus_glfw_sample/OculusSDK/LibOVR/Include/Extras/OVR_Math.h
+++ b/examples/oculus_glfw_sample/OculusSDK/LibOVR/Include/Extras/OVR_Math.h
@@ -1,7 +1,7 @@
/********************************************************************************//**
\file OVR_Math.h
\brief Implementation of 3D primitives such as vectors, matrices.
-\copyright Copyright 2015 Oculus VR, LLC All Rights reserved.
+\copyright Copyright 2014-2016 Oculus VR, LLC All Rights reserved.
*************************************************************************************/
#ifndef OVR_Math_h
@@ -1754,7 +1754,7 @@ public:
: Rotation(s.Rotation), Translation(s.Translation)
{
// Ensure normalized rotation if converting from float to double
- if (sizeof(T) > sizeof(Math<T>::OtherFloatType))
+ if (sizeof(T) > sizeof(typename Math<T>::OtherFloatType))
Rotation.Normalize();
}