├── .gitignore ├── README.md ├── example-OculusRiftRendering ├── Makefile ├── OculusRenderingBasic.sln ├── OculusRenderingBasic.vcxproj ├── OculusRenderingBasic.vcxproj.filters ├── OculusRenderingBasic.vcxproj.user ├── OculusRenderingBasic.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── andreasmuller.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ └── xcuserdata │ │ └── andreasmuller.xcuserdatad │ │ └── xcschemes │ │ ├── OculusRiftBasic.xcscheme │ │ └── xcschememanagement.plist ├── Project.xcconfig ├── addons.make ├── bin │ └── data │ │ ├── .gitkeep │ │ ├── Fonts │ │ └── DIN.otf │ │ └── Shaders │ │ ├── HmdWarpDK2.frag │ │ ├── HmdWarpDK2.vert │ │ └── HmdWarpDK2_simple.vert ├── icon.aps ├── icon.rc ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── libs ├── 3rdParty │ └── TinyXml │ │ ├── tinyxml2.cpp │ │ └── tinyxml2.h └── LibOVR │ ├── Include │ ├── OVR.h │ ├── OVR_Kernel.h │ └── OVR_Version.h │ ├── Lib │ ├── MacOS │ │ ├── Debug │ │ │ └── libovr.a │ │ ├── Debug32 │ │ │ └── libovr.a │ │ ├── Release │ │ │ └── libovr.a │ │ └── Release32 │ │ │ └── libovr.a │ └── x64 │ │ ├── VS2010 │ │ ├── libovr64.lib │ │ └── libovr64d.lib │ │ ├── VS2012 │ │ ├── libovr64.lib │ │ └── libovr64d.lib │ │ └── VS2013 │ │ ├── libovr64.lib │ │ └── libovr64d.lib │ └── Src │ ├── CAPI │ ├── CAPI_DistortionRenderer.cpp │ ├── CAPI_DistortionRenderer.h │ ├── CAPI_FrameTimeManager.cpp │ ├── CAPI_FrameTimeManager.h │ ├── CAPI_HMDRenderState.cpp │ ├── CAPI_HMDRenderState.h │ ├── CAPI_HMDState.cpp │ ├── CAPI_HMDState.h │ ├── CAPI_HSWDisplay.cpp │ ├── CAPI_HSWDisplay.h │ ├── D3D1X │ │ ├── CAPI_D3D10_DistortionRenderer.cpp │ │ ├── CAPI_D3D10_DistortionRenderer.h │ │ ├── CAPI_D3D10_HSWDisplay.cpp │ │ ├── CAPI_D3D10_HSWDisplay.h │ │ ├── CAPI_D3D11_DistortionRenderer.cpp │ │ ├── CAPI_D3D11_DistortionRenderer.h │ │ ├── CAPI_D3D11_HSWDisplay.cpp │ │ ├── CAPI_D3D11_HSWDisplay.h │ │ ├── CAPI_D3D1X_DistortionRenderer.cpp │ │ ├── CAPI_D3D1X_DistortionRenderer.h │ │ ├── CAPI_D3D1X_HSWDisplay.cpp │ │ ├── CAPI_D3D1X_HSWDisplay.h │ │ ├── CAPI_D3D1X_Util.cpp │ │ ├── CAPI_D3D1X_Util.h │ │ ├── CAPI_D3D9_DistortionRenderer.cpp │ │ ├── CAPI_D3D9_DistortionRenderer.h │ │ ├── CAPI_D3D9_HSWDisplay.cpp │ │ ├── CAPI_D3D9_HSWDisplay.h │ │ └── CAPI_D3D9_Util.cpp │ ├── GL │ │ ├── CAPI_GL_DistortionRenderer.cpp │ │ ├── CAPI_GL_DistortionRenderer.h │ │ ├── CAPI_GL_DistortionShaders.h │ │ ├── CAPI_GL_HSWDisplay.cpp │ │ ├── CAPI_GL_HSWDisplay.h │ │ ├── CAPI_GL_Util.cpp │ │ └── CAPI_GL_Util.h │ ├── Shaders │ │ ├── DistortionChroma_ps.h │ │ ├── DistortionChroma_ps.psh │ │ ├── DistortionChroma_ps_refl.h │ │ ├── DistortionChroma_vs.h │ │ ├── DistortionChroma_vs.vsh │ │ ├── DistortionChroma_vs_refl.h │ │ ├── DistortionTimewarpChroma_vs.h │ │ ├── DistortionTimewarpChroma_vs.vsh │ │ ├── DistortionTimewarpChroma_vs_refl.h │ │ ├── DistortionTimewarp_vs.h │ │ ├── DistortionTimewarp_vs.vsh │ │ ├── DistortionTimewarp_vs_refl.h │ │ ├── Distortion_ps.h │ │ ├── Distortion_ps.psh │ │ ├── Distortion_ps_refl.h │ │ ├── Distortion_vs.h │ │ ├── Distortion_vs.vsh │ │ ├── Distortion_vs_refl.h │ │ ├── SimpleQuad_ps.h │ │ ├── SimpleQuad_ps.psh │ │ ├── SimpleQuad_ps_refl.h │ │ ├── SimpleQuad_vs.h │ │ ├── SimpleQuad_vs.vsh │ │ ├── SimpleQuad_vs_refl.h │ │ ├── SimpleTexturedQuad_ps.h │ │ ├── SimpleTexturedQuad_ps.psh │ │ ├── SimpleTexturedQuad_ps_refl.h │ │ ├── SimpleTexturedQuad_vs.h │ │ ├── SimpleTexturedQuad_vs.vsh │ │ ├── SimpleTexturedQuad_vs_refl.h │ │ ├── genPixelShaderHeader.bat │ │ └── genVertexShaderHeader.bat │ └── Textures │ │ └── healthAndSafety.tga.h │ ├── Displays │ ├── OVR_Display.cpp │ ├── OVR_Display.h │ ├── OVR_OSX_Display.cpp │ ├── OVR_OSX_Display.h │ ├── OVR_Win32_Display.cpp │ ├── OVR_Win32_Display.h │ ├── OVR_Win32_Dxgi_Display.h │ ├── OVR_Win32_FocusReader.cpp │ ├── OVR_Win32_FocusReader.h │ ├── OVR_Win32_RenderShim.cpp │ ├── OVR_Win32_ShimFunctions.cpp │ └── OVR_Win32_ShimFunctions.h │ ├── Kernel │ ├── OVR_Alg.cpp │ ├── OVR_Alg.h │ ├── OVR_Allocator.cpp │ ├── OVR_Allocator.h │ ├── OVR_Array.h │ ├── OVR_Atomic.cpp │ ├── OVR_Atomic.h │ ├── OVR_CRC32.cpp │ ├── OVR_CRC32.h │ ├── OVR_Color.h │ ├── OVR_Compiler.h │ ├── OVR_ContainerAllocator.h │ ├── OVR_Delegates.h │ ├── OVR_Deque.h │ ├── OVR_File.cpp │ ├── OVR_File.h │ ├── OVR_FileFILE.cpp │ ├── OVR_Hash.h │ ├── OVR_KeyCodes.h │ ├── OVR_List.h │ ├── OVR_Lockless.cpp │ ├── OVR_Lockless.h │ ├── OVR_Log.cpp │ ├── OVR_Log.h │ ├── OVR_Math.cpp │ ├── OVR_Math.h │ ├── OVR_Nullptr.h │ ├── OVR_Observer.h │ ├── OVR_RefCount.cpp │ ├── OVR_RefCount.h │ ├── OVR_SharedMemory.cpp │ ├── OVR_SharedMemory.h │ ├── OVR_Std.cpp │ ├── OVR_Std.h │ ├── OVR_String.cpp │ ├── OVR_String.h │ ├── OVR_StringHash.h │ ├── OVR_String_FormatUtil.cpp │ ├── OVR_String_PathUtil.cpp │ ├── OVR_SysFile.cpp │ ├── OVR_SysFile.h │ ├── OVR_System.cpp │ ├── OVR_System.h │ ├── OVR_ThreadCommandQueue.cpp │ ├── OVR_ThreadCommandQueue.h │ ├── OVR_Threads.h │ ├── OVR_ThreadsPthread.cpp │ ├── OVR_ThreadsWinAPI.cpp │ ├── OVR_Timer.cpp │ ├── OVR_Timer.h │ ├── OVR_Types.h │ ├── OVR_UTF8Util.cpp │ └── OVR_UTF8Util.h │ ├── Net │ ├── OVR_BitStream.cpp │ ├── OVR_BitStream.h │ ├── OVR_MessageIDTypes.h │ ├── OVR_NetworkPlugin.cpp │ ├── OVR_NetworkPlugin.h │ ├── OVR_NetworkTypes.h │ ├── OVR_PacketizedTCPSocket.cpp │ ├── OVR_PacketizedTCPSocket.h │ ├── OVR_RPC1.cpp │ ├── OVR_RPC1.h │ ├── OVR_Session.cpp │ ├── OVR_Session.h │ ├── OVR_Socket.cpp │ ├── OVR_Socket.h │ ├── OVR_Unix_Socket.cpp │ ├── OVR_Unix_Socket.h │ ├── OVR_Win32_Socket.cpp │ └── OVR_Win32_Socket.h │ ├── OVR_CAPI.cpp │ ├── OVR_CAPI.h │ ├── OVR_CAPI_D3D.h │ ├── OVR_CAPI_GL.h │ ├── OVR_JSON.cpp │ ├── OVR_JSON.h │ ├── OVR_Profile.cpp │ ├── OVR_Profile.h │ ├── OVR_SerialFormat.cpp │ ├── OVR_SerialFormat.h │ ├── OVR_Stereo.cpp │ ├── OVR_Stereo.h │ ├── Sensors │ └── OVR_DeviceConstants.h │ ├── Service │ ├── Service_NetClient.cpp │ ├── Service_NetClient.h │ ├── Service_NetSessionCommon.cpp │ └── Service_NetSessionCommon.h │ ├── Tracking │ ├── Tracking_PoseState.h │ ├── Tracking_SensorState.h │ ├── Tracking_SensorStateReader.cpp │ └── Tracking_SensorStateReader.h │ └── Util │ ├── Util_ImageWindow.cpp │ ├── Util_ImageWindow.h │ ├── Util_Interface.cpp │ ├── Util_Interface.h │ ├── Util_LatencyTest2Reader.cpp │ ├── Util_LatencyTest2Reader.h │ ├── Util_LatencyTest2State.h │ ├── Util_Render_Stereo.cpp │ └── Util_Render_Stereo.h ├── license.md ├── ofxOculusDK2Lib ├── .gitignore ├── ofxOculusDK2.props ├── ofxOculusDK2Lib.sln ├── ofxOculusDK2Lib.vcxproj └── ofxOculusDK2Lib.vcxproj.filters └── src ├── ofxOculusDK2.cpp └── ofxOculusDK2.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/README.md -------------------------------------------------------------------------------- /example-OculusRiftRendering/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/example-OculusRiftRendering/Makefile -------------------------------------------------------------------------------- /example-OculusRiftRendering/OculusRenderingBasic.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/example-OculusRiftRendering/OculusRenderingBasic.sln -------------------------------------------------------------------------------- /example-OculusRiftRendering/OculusRenderingBasic.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/example-OculusRiftRendering/OculusRenderingBasic.vcxproj -------------------------------------------------------------------------------- /example-OculusRiftRendering/OculusRenderingBasic.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/example-OculusRiftRendering/OculusRenderingBasic.vcxproj.filters -------------------------------------------------------------------------------- /example-OculusRiftRendering/OculusRenderingBasic.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/example-OculusRiftRendering/OculusRenderingBasic.vcxproj.user -------------------------------------------------------------------------------- /example-OculusRiftRendering/OculusRenderingBasic.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/example-OculusRiftRendering/OculusRenderingBasic.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example-OculusRiftRendering/OculusRenderingBasic.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/example-OculusRiftRendering/OculusRenderingBasic.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example-OculusRiftRendering/OculusRenderingBasic.xcodeproj/project.xcworkspace/xcuserdata/andreasmuller.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/example-OculusRiftRendering/OculusRenderingBasic.xcodeproj/project.xcworkspace/xcuserdata/andreasmuller.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /example-OculusRiftRendering/OculusRenderingBasic.xcodeproj/project.xcworkspace/xcuserdata/andreasmuller.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/example-OculusRiftRendering/OculusRenderingBasic.xcodeproj/project.xcworkspace/xcuserdata/andreasmuller.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /example-OculusRiftRendering/OculusRenderingBasic.xcodeproj/xcuserdata/andreasmuller.xcuserdatad/xcschemes/OculusRiftBasic.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/example-OculusRiftRendering/OculusRenderingBasic.xcodeproj/xcuserdata/andreasmuller.xcuserdatad/xcschemes/OculusRiftBasic.xcscheme -------------------------------------------------------------------------------- /example-OculusRiftRendering/OculusRenderingBasic.xcodeproj/xcuserdata/andreasmuller.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/example-OculusRiftRendering/OculusRenderingBasic.xcodeproj/xcuserdata/andreasmuller.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /example-OculusRiftRendering/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/example-OculusRiftRendering/Project.xcconfig -------------------------------------------------------------------------------- /example-OculusRiftRendering/addons.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/example-OculusRiftRendering/addons.make -------------------------------------------------------------------------------- /example-OculusRiftRendering/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example-OculusRiftRendering/bin/data/Fonts/DIN.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/example-OculusRiftRendering/bin/data/Fonts/DIN.otf -------------------------------------------------------------------------------- /example-OculusRiftRendering/bin/data/Shaders/HmdWarpDK2.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/example-OculusRiftRendering/bin/data/Shaders/HmdWarpDK2.frag -------------------------------------------------------------------------------- /example-OculusRiftRendering/bin/data/Shaders/HmdWarpDK2.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/example-OculusRiftRendering/bin/data/Shaders/HmdWarpDK2.vert -------------------------------------------------------------------------------- /example-OculusRiftRendering/bin/data/Shaders/HmdWarpDK2_simple.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/example-OculusRiftRendering/bin/data/Shaders/HmdWarpDK2_simple.vert -------------------------------------------------------------------------------- /example-OculusRiftRendering/icon.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/example-OculusRiftRendering/icon.aps -------------------------------------------------------------------------------- /example-OculusRiftRendering/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/example-OculusRiftRendering/icon.rc -------------------------------------------------------------------------------- /example-OculusRiftRendering/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/example-OculusRiftRendering/openFrameworks-Info.plist -------------------------------------------------------------------------------- /example-OculusRiftRendering/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/example-OculusRiftRendering/src/main.cpp -------------------------------------------------------------------------------- /example-OculusRiftRendering/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/example-OculusRiftRendering/src/testApp.cpp -------------------------------------------------------------------------------- /example-OculusRiftRendering/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/example-OculusRiftRendering/src/testApp.h -------------------------------------------------------------------------------- /libs/3rdParty/TinyXml/tinyxml2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/3rdParty/TinyXml/tinyxml2.cpp -------------------------------------------------------------------------------- /libs/3rdParty/TinyXml/tinyxml2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/3rdParty/TinyXml/tinyxml2.h -------------------------------------------------------------------------------- /libs/LibOVR/Include/OVR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Include/OVR.h -------------------------------------------------------------------------------- /libs/LibOVR/Include/OVR_Kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Include/OVR_Kernel.h -------------------------------------------------------------------------------- /libs/LibOVR/Include/OVR_Version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Include/OVR_Version.h -------------------------------------------------------------------------------- /libs/LibOVR/Lib/MacOS/Debug/libovr.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Lib/MacOS/Debug/libovr.a -------------------------------------------------------------------------------- /libs/LibOVR/Lib/MacOS/Debug32/libovr.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Lib/MacOS/Debug32/libovr.a -------------------------------------------------------------------------------- /libs/LibOVR/Lib/MacOS/Release/libovr.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Lib/MacOS/Release/libovr.a -------------------------------------------------------------------------------- /libs/LibOVR/Lib/MacOS/Release32/libovr.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Lib/MacOS/Release32/libovr.a -------------------------------------------------------------------------------- /libs/LibOVR/Lib/x64/VS2010/libovr64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Lib/x64/VS2010/libovr64.lib -------------------------------------------------------------------------------- /libs/LibOVR/Lib/x64/VS2010/libovr64d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Lib/x64/VS2010/libovr64d.lib -------------------------------------------------------------------------------- /libs/LibOVR/Lib/x64/VS2012/libovr64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Lib/x64/VS2012/libovr64.lib -------------------------------------------------------------------------------- /libs/LibOVR/Lib/x64/VS2012/libovr64d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Lib/x64/VS2012/libovr64d.lib -------------------------------------------------------------------------------- /libs/LibOVR/Lib/x64/VS2013/libovr64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Lib/x64/VS2013/libovr64.lib -------------------------------------------------------------------------------- /libs/LibOVR/Lib/x64/VS2013/libovr64d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Lib/x64/VS2013/libovr64d.lib -------------------------------------------------------------------------------- /libs/LibOVR/Src/CAPI/CAPI_DistortionRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/CAPI/CAPI_DistortionRenderer.cpp -------------------------------------------------------------------------------- /libs/LibOVR/Src/CAPI/CAPI_DistortionRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/CAPI/CAPI_DistortionRenderer.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/CAPI/CAPI_FrameTimeManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/CAPI/CAPI_FrameTimeManager.cpp -------------------------------------------------------------------------------- /libs/LibOVR/Src/CAPI/CAPI_FrameTimeManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/CAPI/CAPI_FrameTimeManager.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/CAPI/CAPI_HMDRenderState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/CAPI/CAPI_HMDRenderState.cpp -------------------------------------------------------------------------------- /libs/LibOVR/Src/CAPI/CAPI_HMDRenderState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/CAPI/CAPI_HMDRenderState.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/CAPI/CAPI_HMDState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/CAPI/CAPI_HMDState.cpp -------------------------------------------------------------------------------- /libs/LibOVR/Src/CAPI/CAPI_HMDState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/CAPI/CAPI_HMDState.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/CAPI/CAPI_HSWDisplay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/CAPI/CAPI_HSWDisplay.cpp -------------------------------------------------------------------------------- /libs/LibOVR/Src/CAPI/CAPI_HSWDisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/CAPI/CAPI_HSWDisplay.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/CAPI/D3D1X/CAPI_D3D10_DistortionRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/CAPI/D3D1X/CAPI_D3D10_DistortionRenderer.cpp -------------------------------------------------------------------------------- /libs/LibOVR/Src/CAPI/D3D1X/CAPI_D3D10_DistortionRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/CAPI/D3D1X/CAPI_D3D10_DistortionRenderer.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/CAPI/D3D1X/CAPI_D3D10_HSWDisplay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/CAPI/D3D1X/CAPI_D3D10_HSWDisplay.cpp -------------------------------------------------------------------------------- /libs/LibOVR/Src/CAPI/D3D1X/CAPI_D3D10_HSWDisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/CAPI/D3D1X/CAPI_D3D10_HSWDisplay.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/CAPI/D3D1X/CAPI_D3D11_DistortionRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/CAPI/D3D1X/CAPI_D3D11_DistortionRenderer.cpp -------------------------------------------------------------------------------- /libs/LibOVR/Src/CAPI/D3D1X/CAPI_D3D11_DistortionRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/CAPI/D3D1X/CAPI_D3D11_DistortionRenderer.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/CAPI/D3D1X/CAPI_D3D11_HSWDisplay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/CAPI/D3D1X/CAPI_D3D11_HSWDisplay.cpp -------------------------------------------------------------------------------- /libs/LibOVR/Src/CAPI/D3D1X/CAPI_D3D11_HSWDisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/CAPI/D3D1X/CAPI_D3D11_HSWDisplay.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/CAPI/D3D1X/CAPI_D3D1X_DistortionRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/CAPI/D3D1X/CAPI_D3D1X_DistortionRenderer.cpp -------------------------------------------------------------------------------- /libs/LibOVR/Src/CAPI/D3D1X/CAPI_D3D1X_DistortionRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/CAPI/D3D1X/CAPI_D3D1X_DistortionRenderer.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/CAPI/D3D1X/CAPI_D3D1X_HSWDisplay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/CAPI/D3D1X/CAPI_D3D1X_HSWDisplay.cpp -------------------------------------------------------------------------------- /libs/LibOVR/Src/CAPI/D3D1X/CAPI_D3D1X_HSWDisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/CAPI/D3D1X/CAPI_D3D1X_HSWDisplay.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/CAPI/D3D1X/CAPI_D3D1X_Util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/CAPI/D3D1X/CAPI_D3D1X_Util.cpp -------------------------------------------------------------------------------- /libs/LibOVR/Src/CAPI/D3D1X/CAPI_D3D1X_Util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/CAPI/D3D1X/CAPI_D3D1X_Util.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/CAPI/D3D1X/CAPI_D3D9_DistortionRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/CAPI/D3D1X/CAPI_D3D9_DistortionRenderer.cpp -------------------------------------------------------------------------------- /libs/LibOVR/Src/CAPI/D3D1X/CAPI_D3D9_DistortionRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/CAPI/D3D1X/CAPI_D3D9_DistortionRenderer.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/CAPI/D3D1X/CAPI_D3D9_HSWDisplay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/CAPI/D3D1X/CAPI_D3D9_HSWDisplay.cpp -------------------------------------------------------------------------------- /libs/LibOVR/Src/CAPI/D3D1X/CAPI_D3D9_HSWDisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/CAPI/D3D1X/CAPI_D3D9_HSWDisplay.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/CAPI/D3D1X/CAPI_D3D9_Util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/CAPI/D3D1X/CAPI_D3D9_Util.cpp -------------------------------------------------------------------------------- /libs/LibOVR/Src/CAPI/GL/CAPI_GL_DistortionRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/CAPI/GL/CAPI_GL_DistortionRenderer.cpp -------------------------------------------------------------------------------- /libs/LibOVR/Src/CAPI/GL/CAPI_GL_DistortionRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/CAPI/GL/CAPI_GL_DistortionRenderer.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/CAPI/GL/CAPI_GL_DistortionShaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/CAPI/GL/CAPI_GL_DistortionShaders.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/CAPI/GL/CAPI_GL_HSWDisplay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/CAPI/GL/CAPI_GL_HSWDisplay.cpp -------------------------------------------------------------------------------- /libs/LibOVR/Src/CAPI/GL/CAPI_GL_HSWDisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/CAPI/GL/CAPI_GL_HSWDisplay.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/CAPI/GL/CAPI_GL_Util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/CAPI/GL/CAPI_GL_Util.cpp -------------------------------------------------------------------------------- /libs/LibOVR/Src/CAPI/GL/CAPI_GL_Util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/CAPI/GL/CAPI_GL_Util.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/CAPI/Shaders/DistortionChroma_ps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/CAPI/Shaders/DistortionChroma_ps.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/CAPI/Shaders/DistortionChroma_ps.psh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/CAPI/Shaders/DistortionChroma_ps.psh -------------------------------------------------------------------------------- /libs/LibOVR/Src/CAPI/Shaders/DistortionChroma_ps_refl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/CAPI/Shaders/DistortionChroma_ps_refl.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/CAPI/Shaders/DistortionChroma_vs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/CAPI/Shaders/DistortionChroma_vs.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/CAPI/Shaders/DistortionChroma_vs.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/CAPI/Shaders/DistortionChroma_vs.vsh -------------------------------------------------------------------------------- /libs/LibOVR/Src/CAPI/Shaders/DistortionChroma_vs_refl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/CAPI/Shaders/DistortionChroma_vs_refl.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/CAPI/Shaders/DistortionTimewarpChroma_vs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/CAPI/Shaders/DistortionTimewarpChroma_vs.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/CAPI/Shaders/DistortionTimewarpChroma_vs.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/CAPI/Shaders/DistortionTimewarpChroma_vs.vsh -------------------------------------------------------------------------------- /libs/LibOVR/Src/CAPI/Shaders/DistortionTimewarpChroma_vs_refl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/CAPI/Shaders/DistortionTimewarpChroma_vs_refl.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/CAPI/Shaders/DistortionTimewarp_vs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/CAPI/Shaders/DistortionTimewarp_vs.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/CAPI/Shaders/DistortionTimewarp_vs.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/CAPI/Shaders/DistortionTimewarp_vs.vsh -------------------------------------------------------------------------------- /libs/LibOVR/Src/CAPI/Shaders/DistortionTimewarp_vs_refl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/CAPI/Shaders/DistortionTimewarp_vs_refl.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/CAPI/Shaders/Distortion_ps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/CAPI/Shaders/Distortion_ps.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/CAPI/Shaders/Distortion_ps.psh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/CAPI/Shaders/Distortion_ps.psh -------------------------------------------------------------------------------- /libs/LibOVR/Src/CAPI/Shaders/Distortion_ps_refl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/CAPI/Shaders/Distortion_ps_refl.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/CAPI/Shaders/Distortion_vs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/CAPI/Shaders/Distortion_vs.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/CAPI/Shaders/Distortion_vs.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/CAPI/Shaders/Distortion_vs.vsh -------------------------------------------------------------------------------- /libs/LibOVR/Src/CAPI/Shaders/Distortion_vs_refl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/CAPI/Shaders/Distortion_vs_refl.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/CAPI/Shaders/SimpleQuad_ps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/CAPI/Shaders/SimpleQuad_ps.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/CAPI/Shaders/SimpleQuad_ps.psh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/CAPI/Shaders/SimpleQuad_ps.psh -------------------------------------------------------------------------------- /libs/LibOVR/Src/CAPI/Shaders/SimpleQuad_ps_refl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/CAPI/Shaders/SimpleQuad_ps_refl.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/CAPI/Shaders/SimpleQuad_vs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/CAPI/Shaders/SimpleQuad_vs.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/CAPI/Shaders/SimpleQuad_vs.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/CAPI/Shaders/SimpleQuad_vs.vsh -------------------------------------------------------------------------------- /libs/LibOVR/Src/CAPI/Shaders/SimpleQuad_vs_refl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/CAPI/Shaders/SimpleQuad_vs_refl.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/CAPI/Shaders/SimpleTexturedQuad_ps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/CAPI/Shaders/SimpleTexturedQuad_ps.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/CAPI/Shaders/SimpleTexturedQuad_ps.psh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/CAPI/Shaders/SimpleTexturedQuad_ps.psh -------------------------------------------------------------------------------- /libs/LibOVR/Src/CAPI/Shaders/SimpleTexturedQuad_ps_refl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/CAPI/Shaders/SimpleTexturedQuad_ps_refl.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/CAPI/Shaders/SimpleTexturedQuad_vs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/CAPI/Shaders/SimpleTexturedQuad_vs.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/CAPI/Shaders/SimpleTexturedQuad_vs.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/CAPI/Shaders/SimpleTexturedQuad_vs.vsh -------------------------------------------------------------------------------- /libs/LibOVR/Src/CAPI/Shaders/SimpleTexturedQuad_vs_refl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/CAPI/Shaders/SimpleTexturedQuad_vs_refl.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/CAPI/Shaders/genPixelShaderHeader.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/CAPI/Shaders/genPixelShaderHeader.bat -------------------------------------------------------------------------------- /libs/LibOVR/Src/CAPI/Shaders/genVertexShaderHeader.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/CAPI/Shaders/genVertexShaderHeader.bat -------------------------------------------------------------------------------- /libs/LibOVR/Src/CAPI/Textures/healthAndSafety.tga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/CAPI/Textures/healthAndSafety.tga.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/Displays/OVR_Display.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Displays/OVR_Display.cpp -------------------------------------------------------------------------------- /libs/LibOVR/Src/Displays/OVR_Display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Displays/OVR_Display.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/Displays/OVR_OSX_Display.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Displays/OVR_OSX_Display.cpp -------------------------------------------------------------------------------- /libs/LibOVR/Src/Displays/OVR_OSX_Display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Displays/OVR_OSX_Display.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/Displays/OVR_Win32_Display.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Displays/OVR_Win32_Display.cpp -------------------------------------------------------------------------------- /libs/LibOVR/Src/Displays/OVR_Win32_Display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Displays/OVR_Win32_Display.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/Displays/OVR_Win32_Dxgi_Display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Displays/OVR_Win32_Dxgi_Display.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/Displays/OVR_Win32_FocusReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Displays/OVR_Win32_FocusReader.cpp -------------------------------------------------------------------------------- /libs/LibOVR/Src/Displays/OVR_Win32_FocusReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Displays/OVR_Win32_FocusReader.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/Displays/OVR_Win32_RenderShim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Displays/OVR_Win32_RenderShim.cpp -------------------------------------------------------------------------------- /libs/LibOVR/Src/Displays/OVR_Win32_ShimFunctions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Displays/OVR_Win32_ShimFunctions.cpp -------------------------------------------------------------------------------- /libs/LibOVR/Src/Displays/OVR_Win32_ShimFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Displays/OVR_Win32_ShimFunctions.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/Kernel/OVR_Alg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Kernel/OVR_Alg.cpp -------------------------------------------------------------------------------- /libs/LibOVR/Src/Kernel/OVR_Alg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Kernel/OVR_Alg.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/Kernel/OVR_Allocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Kernel/OVR_Allocator.cpp -------------------------------------------------------------------------------- /libs/LibOVR/Src/Kernel/OVR_Allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Kernel/OVR_Allocator.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/Kernel/OVR_Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Kernel/OVR_Array.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/Kernel/OVR_Atomic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Kernel/OVR_Atomic.cpp -------------------------------------------------------------------------------- /libs/LibOVR/Src/Kernel/OVR_Atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Kernel/OVR_Atomic.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/Kernel/OVR_CRC32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Kernel/OVR_CRC32.cpp -------------------------------------------------------------------------------- /libs/LibOVR/Src/Kernel/OVR_CRC32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Kernel/OVR_CRC32.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/Kernel/OVR_Color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Kernel/OVR_Color.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/Kernel/OVR_Compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Kernel/OVR_Compiler.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/Kernel/OVR_ContainerAllocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Kernel/OVR_ContainerAllocator.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/Kernel/OVR_Delegates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Kernel/OVR_Delegates.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/Kernel/OVR_Deque.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Kernel/OVR_Deque.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/Kernel/OVR_File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Kernel/OVR_File.cpp -------------------------------------------------------------------------------- /libs/LibOVR/Src/Kernel/OVR_File.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Kernel/OVR_File.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/Kernel/OVR_FileFILE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Kernel/OVR_FileFILE.cpp -------------------------------------------------------------------------------- /libs/LibOVR/Src/Kernel/OVR_Hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Kernel/OVR_Hash.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/Kernel/OVR_KeyCodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Kernel/OVR_KeyCodes.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/Kernel/OVR_List.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Kernel/OVR_List.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/Kernel/OVR_Lockless.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Kernel/OVR_Lockless.cpp -------------------------------------------------------------------------------- /libs/LibOVR/Src/Kernel/OVR_Lockless.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Kernel/OVR_Lockless.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/Kernel/OVR_Log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Kernel/OVR_Log.cpp -------------------------------------------------------------------------------- /libs/LibOVR/Src/Kernel/OVR_Log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Kernel/OVR_Log.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/Kernel/OVR_Math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Kernel/OVR_Math.cpp -------------------------------------------------------------------------------- /libs/LibOVR/Src/Kernel/OVR_Math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Kernel/OVR_Math.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/Kernel/OVR_Nullptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Kernel/OVR_Nullptr.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/Kernel/OVR_Observer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Kernel/OVR_Observer.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/Kernel/OVR_RefCount.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Kernel/OVR_RefCount.cpp -------------------------------------------------------------------------------- /libs/LibOVR/Src/Kernel/OVR_RefCount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Kernel/OVR_RefCount.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/Kernel/OVR_SharedMemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Kernel/OVR_SharedMemory.cpp -------------------------------------------------------------------------------- /libs/LibOVR/Src/Kernel/OVR_SharedMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Kernel/OVR_SharedMemory.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/Kernel/OVR_Std.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Kernel/OVR_Std.cpp -------------------------------------------------------------------------------- /libs/LibOVR/Src/Kernel/OVR_Std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Kernel/OVR_Std.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/Kernel/OVR_String.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Kernel/OVR_String.cpp -------------------------------------------------------------------------------- /libs/LibOVR/Src/Kernel/OVR_String.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Kernel/OVR_String.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/Kernel/OVR_StringHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Kernel/OVR_StringHash.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/Kernel/OVR_String_FormatUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Kernel/OVR_String_FormatUtil.cpp -------------------------------------------------------------------------------- /libs/LibOVR/Src/Kernel/OVR_String_PathUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Kernel/OVR_String_PathUtil.cpp -------------------------------------------------------------------------------- /libs/LibOVR/Src/Kernel/OVR_SysFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Kernel/OVR_SysFile.cpp -------------------------------------------------------------------------------- /libs/LibOVR/Src/Kernel/OVR_SysFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Kernel/OVR_SysFile.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/Kernel/OVR_System.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Kernel/OVR_System.cpp -------------------------------------------------------------------------------- /libs/LibOVR/Src/Kernel/OVR_System.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Kernel/OVR_System.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/Kernel/OVR_ThreadCommandQueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Kernel/OVR_ThreadCommandQueue.cpp -------------------------------------------------------------------------------- /libs/LibOVR/Src/Kernel/OVR_ThreadCommandQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Kernel/OVR_ThreadCommandQueue.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/Kernel/OVR_Threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Kernel/OVR_Threads.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/Kernel/OVR_ThreadsPthread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Kernel/OVR_ThreadsPthread.cpp -------------------------------------------------------------------------------- /libs/LibOVR/Src/Kernel/OVR_ThreadsWinAPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Kernel/OVR_ThreadsWinAPI.cpp -------------------------------------------------------------------------------- /libs/LibOVR/Src/Kernel/OVR_Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Kernel/OVR_Timer.cpp -------------------------------------------------------------------------------- /libs/LibOVR/Src/Kernel/OVR_Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Kernel/OVR_Timer.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/Kernel/OVR_Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Kernel/OVR_Types.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/Kernel/OVR_UTF8Util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Kernel/OVR_UTF8Util.cpp -------------------------------------------------------------------------------- /libs/LibOVR/Src/Kernel/OVR_UTF8Util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Kernel/OVR_UTF8Util.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/Net/OVR_BitStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Net/OVR_BitStream.cpp -------------------------------------------------------------------------------- /libs/LibOVR/Src/Net/OVR_BitStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Net/OVR_BitStream.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/Net/OVR_MessageIDTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Net/OVR_MessageIDTypes.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/Net/OVR_NetworkPlugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Net/OVR_NetworkPlugin.cpp -------------------------------------------------------------------------------- /libs/LibOVR/Src/Net/OVR_NetworkPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Net/OVR_NetworkPlugin.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/Net/OVR_NetworkTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Net/OVR_NetworkTypes.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/Net/OVR_PacketizedTCPSocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Net/OVR_PacketizedTCPSocket.cpp -------------------------------------------------------------------------------- /libs/LibOVR/Src/Net/OVR_PacketizedTCPSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Net/OVR_PacketizedTCPSocket.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/Net/OVR_RPC1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Net/OVR_RPC1.cpp -------------------------------------------------------------------------------- /libs/LibOVR/Src/Net/OVR_RPC1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Net/OVR_RPC1.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/Net/OVR_Session.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Net/OVR_Session.cpp -------------------------------------------------------------------------------- /libs/LibOVR/Src/Net/OVR_Session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Net/OVR_Session.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/Net/OVR_Socket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Net/OVR_Socket.cpp -------------------------------------------------------------------------------- /libs/LibOVR/Src/Net/OVR_Socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Net/OVR_Socket.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/Net/OVR_Unix_Socket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Net/OVR_Unix_Socket.cpp -------------------------------------------------------------------------------- /libs/LibOVR/Src/Net/OVR_Unix_Socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Net/OVR_Unix_Socket.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/Net/OVR_Win32_Socket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Net/OVR_Win32_Socket.cpp -------------------------------------------------------------------------------- /libs/LibOVR/Src/Net/OVR_Win32_Socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Net/OVR_Win32_Socket.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/OVR_CAPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/OVR_CAPI.cpp -------------------------------------------------------------------------------- /libs/LibOVR/Src/OVR_CAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/OVR_CAPI.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/OVR_CAPI_D3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/OVR_CAPI_D3D.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/OVR_CAPI_GL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/OVR_CAPI_GL.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/OVR_JSON.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/OVR_JSON.cpp -------------------------------------------------------------------------------- /libs/LibOVR/Src/OVR_JSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/OVR_JSON.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/OVR_Profile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/OVR_Profile.cpp -------------------------------------------------------------------------------- /libs/LibOVR/Src/OVR_Profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/OVR_Profile.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/OVR_SerialFormat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/OVR_SerialFormat.cpp -------------------------------------------------------------------------------- /libs/LibOVR/Src/OVR_SerialFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/OVR_SerialFormat.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/OVR_Stereo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/OVR_Stereo.cpp -------------------------------------------------------------------------------- /libs/LibOVR/Src/OVR_Stereo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/OVR_Stereo.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/Sensors/OVR_DeviceConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Sensors/OVR_DeviceConstants.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/Service/Service_NetClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Service/Service_NetClient.cpp -------------------------------------------------------------------------------- /libs/LibOVR/Src/Service/Service_NetClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Service/Service_NetClient.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/Service/Service_NetSessionCommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Service/Service_NetSessionCommon.cpp -------------------------------------------------------------------------------- /libs/LibOVR/Src/Service/Service_NetSessionCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Service/Service_NetSessionCommon.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/Tracking/Tracking_PoseState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Tracking/Tracking_PoseState.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/Tracking/Tracking_SensorState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Tracking/Tracking_SensorState.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/Tracking/Tracking_SensorStateReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Tracking/Tracking_SensorStateReader.cpp -------------------------------------------------------------------------------- /libs/LibOVR/Src/Tracking/Tracking_SensorStateReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Tracking/Tracking_SensorStateReader.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/Util/Util_ImageWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Util/Util_ImageWindow.cpp -------------------------------------------------------------------------------- /libs/LibOVR/Src/Util/Util_ImageWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Util/Util_ImageWindow.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/Util/Util_Interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Util/Util_Interface.cpp -------------------------------------------------------------------------------- /libs/LibOVR/Src/Util/Util_Interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Util/Util_Interface.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/Util/Util_LatencyTest2Reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Util/Util_LatencyTest2Reader.cpp -------------------------------------------------------------------------------- /libs/LibOVR/Src/Util/Util_LatencyTest2Reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Util/Util_LatencyTest2Reader.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/Util/Util_LatencyTest2State.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Util/Util_LatencyTest2State.h -------------------------------------------------------------------------------- /libs/LibOVR/Src/Util/Util_Render_Stereo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Util/Util_Render_Stereo.cpp -------------------------------------------------------------------------------- /libs/LibOVR/Src/Util/Util_Render_Stereo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/libs/LibOVR/Src/Util/Util_Render_Stereo.h -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/license.md -------------------------------------------------------------------------------- /ofxOculusDK2Lib/.gitignore: -------------------------------------------------------------------------------- 1 | Debug/ 2 | Release/ 3 | -------------------------------------------------------------------------------- /ofxOculusDK2Lib/ofxOculusDK2.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/ofxOculusDK2Lib/ofxOculusDK2.props -------------------------------------------------------------------------------- /ofxOculusDK2Lib/ofxOculusDK2Lib.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/ofxOculusDK2Lib/ofxOculusDK2Lib.sln -------------------------------------------------------------------------------- /ofxOculusDK2Lib/ofxOculusDK2Lib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/ofxOculusDK2Lib/ofxOculusDK2Lib.vcxproj -------------------------------------------------------------------------------- /ofxOculusDK2Lib/ofxOculusDK2Lib.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/ofxOculusDK2Lib/ofxOculusDK2Lib.vcxproj.filters -------------------------------------------------------------------------------- /src/ofxOculusDK2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/src/ofxOculusDK2.cpp -------------------------------------------------------------------------------- /src/ofxOculusDK2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/obviousjim/ofxOculusDK2/HEAD/src/ofxOculusDK2.h --------------------------------------------------------------------------------