oculus1

view libovr/Src/linux/OVR_Linux_SensorDevice.cpp @ 18:1b107de821c1

fixed the test to work with non-pow2 textures
author John Tsiombikas <nuclear@member.fsf.org>
date Thu, 26 Sep 2013 10:33:08 +0300
parents
children
line source
1 /************************************************************************************
3 Filename : OVR_Linux_SensorDevice.cpp
4 Content : Linux SensorDevice implementation
5 Created : June 13, 2013
6 Authors : Brant Lewis
8 Copyright : Copyright 2013 Oculus VR, Inc. All Rights reserved.
10 Use of this software is subject to the terms of the Oculus license
11 agreement provided at the time of installation or download, or which
12 otherwise accompanies this software in either electronic or hard copy form.
14 *************************************************************************************/
16 //#include "OVR_OSX_HMDDevice.h"
17 #include "OVR_SensorImpl.h"
18 #include "OVR_DeviceImpl.h"
20 namespace OVR { namespace OSX {
22 } // namespace OSX
24 //-------------------------------------------------------------------------------------
25 void SensorDeviceImpl::EnumerateHMDFromSensorDisplayInfo( const SensorDisplayInfoImpl& displayInfo,
26 DeviceFactory::EnumerateVisitor& visitor)
27 {
28 /*
29 Linux::HMDDeviceCreateDesc hmdCreateDesc(&Linux::HMDDeviceFactory::Instance, 1, 1, "", 0);
31 hmdCreateDesc.SetScreenParameters( 0, 0,
32 displayInfo.HResolution, displayInfo.VResolution,
33 displayInfo.HScreenSize, displayInfo.VScreenSize);
35 if ((displayInfo.DistortionType & SensorDisplayInfoImpl::Mask_BaseFmt) == SensorDisplayInfoImpl::Base_Distortion)
36 hmdCreateDesc.SetDistortion(displayInfo.DistortionK);
37 if (displayInfo.HScreenSize > 0.14f)
38 hmdCreateDesc.Set7Inch();
40 visitor.Visit(hmdCreateDesc);
41 */
44 }
46 } // namespace OVR