00001 /************************************************************************************ 00002 00003 PublicHeader: OVR.h 00004 Filename : OVR_DeviceConstants.h 00005 Content : Device constants 00006 Created : February 5, 2013 00007 Authors : Lee Cooper 00008 00009 Copyright : Copyright 2013 Oculus VR, Inc. All Rights reserved. 00010 00011 Use of this software is subject to the terms of the Oculus license 00012 agreement provided at the time of installation or download, or which 00013 otherwise accompanies this software in either electronic or hard copy form. 00014 00015 *************************************************************************************/ 00016 00017 #ifndef OVR_DeviceConstants_h 00018 #define OVR_DeviceConstants_h 00019 00020 namespace OVR { 00021 00022 00023 //------------------------------------------------------------------------------------- 00024 // Different device types supported by OVR; this type is reported by DeviceBase::GetType. 00025 // 00026 enum DeviceType 00027 { 00028 Device_None = 0, 00029 Device_Manager = 1, 00030 Device_HMD = 2, 00031 Device_Sensor = 3, 00032 Device_LatencyTester = 4, 00033 Device_All = 0xFF // Set for enumeration only, to enumerate all device types. 00034 }; 00035 00036 } // namespace OVR 00037 00038 #endif