diff options
author | Sven Gothel <[email protected]> | 2015-03-27 03:07:58 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2015-03-27 03:07:58 +0100 |
commit | e626312c79f49b2244b5fdae8dbbf1ee22520817 (patch) | |
tree | 717c760aa7f02bd67ca5ab020844286ae4caa367 /src/oculusvr/native | |
parent | bb6a8fdc8decdbec64bbab0fe2175e76211d0e77 (diff) |
Bug 1116: Oculus SDK 0.4.4 support for JOGL - Part-3: New set of C-files, adapt to new SDK API
- Tested on Windows and working StereoDemo01 w/ DK2!
Diffstat (limited to 'src/oculusvr/native')
-rw-r--r-- | src/oculusvr/native/OVRImplMisc.cpp | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/src/oculusvr/native/OVRImplMisc.cpp b/src/oculusvr/native/OVRImplMisc.cpp deleted file mode 100644 index 08ebddf62..000000000 --- a/src/oculusvr/native/OVRImplMisc.cpp +++ /dev/null @@ -1,30 +0,0 @@ -#include "OVR_CAPI.h" - -#include "CAPI_DistortionRenderer.h" - -namespace OVR { namespace CAPI { - - /** - * Index is: apiConfig->Header.API, with - * ovrRenderAPIConfig * apiConfig - * ovrRenderAPIConfigHeader Header - * ovrRenderAPIType Header.API - */ - DistortionRenderer::CreateFunc DistortionRenderer::APICreateRegistry[ovrRenderAPI_Count] = - { - 0, // None - 0, // None for GL - &GL::DistortionRenderer::Create, - 0, // Android_GLES - 0, // D3D9 - 0, // D3D10 - 0 // D3D11 - }; - -}} // namespace OVR::CAPI - -// -// TBD: Replace stdc++ for compatibility ! -// -// This is not enough: -// extern "C" void __cxa_pure_virtual() { while (1); } - |