oculus1

diff libovr/Include/OVR.h @ 1:e2f9e4603129

added LibOVR and started a simple vr wrapper.
author John Tsiombikas <nuclear@member.fsf.org>
date Sat, 14 Sep 2013 16:14:59 +0300
parents
children
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/libovr/Include/OVR.h	Sat Sep 14 16:14:59 2013 +0300
     1.3 @@ -0,0 +1,34 @@
     1.4 +/************************************************************************************
     1.5 +
     1.6 +Filename    :   OVR.h
     1.7 +Content     :   This contains references to all OVR-specific headers in Src folder.
     1.8 +                Should be generated automatically based on PublicHeader tags.
     1.9 +
    1.10 +Copyright   :   Copyright 2012 Oculus VR, Inc. All Rights reserved.
    1.11 +
    1.12 +Use of this software is subject to the terms of the Oculus license
    1.13 +agreement provided at the time of installation or download, or which
    1.14 +otherwise accompanies this software in either electronic or hard copy form.
    1.15 +
    1.16 +*************************************************************************************/
    1.17 +
    1.18 +#ifndef OVR_h
    1.19 +#define OVR_h
    1.20 +
    1.21 +#include "../Src/Kernel/OVR_Allocator.h"
    1.22 +#include "../Src/Kernel/OVR_Log.h"
    1.23 +#include "../Src/Kernel/OVR_Math.h"
    1.24 +#include "../Src/Kernel/OVR_System.h"
    1.25 +#include "../Src/Kernel/OVR_Types.h"
    1.26 +#include "../Src/OVR_Device.h"
    1.27 +#include "../Src/OVR_DeviceConstants.h"
    1.28 +#include "../Src/OVR_DeviceHandle.h"
    1.29 +#include "../Src/OVR_DeviceMessages.h"
    1.30 +#include "../Src/OVR_SensorFusion.h"
    1.31 +#include "../Src/OVR_Profile.h"
    1.32 +#include "../Src/Util/Util_LatencyTest.h"
    1.33 +#include "../Src/Util/Util_Render_Stereo.h"
    1.34 +#include "../Src/Util/Util_MagCalibration.h"
    1.35 +
    1.36 +#endif
    1.37 +