@@ -168,16 +168,17 @@ inline void dispatchEventToRenderer(UnityRendererType renderer,
168
168
return ;
169
169
}
170
170
switch (renderer.getDeviceTypeEnum ()) {
171
- #if SUPPORT_OPENGL
172
- case kUnityGfxRendererOpenGL :
173
- DoEventGraphicsDeviceOpenGL (eventType);
174
- break ;
175
- #endif
176
171
#if SUPPORT_D3D11
177
- case kUnityGfxRendererD3D11 :
172
+ case OSVRSupportedRenderers::D3D11 :
178
173
DoEventGraphicsDeviceD3D11 (eventType);
179
174
break ;
180
175
#endif
176
+ #if SUPPORT_OPENGL
177
+ case OSVRSupportedRenderers::OpenGL:
178
+ DoEventGraphicsDeviceOpenGL (eventType);
179
+ break ;
180
+ #endif
181
+ case OSVRSupportedRenderers::EmptyRenderer:
181
182
default :
182
183
break ;
183
184
}
@@ -323,15 +324,16 @@ OSVR_ReturnCode UNITY_INTERFACE_API ConstructRenderBuffers() {
323
324
const int n = static_cast <int >(renderInfo.size ());
324
325
switch (s_deviceType.getDeviceTypeEnum ()) {
325
326
#if SUPPORT_D3D11
326
- case kUnityGfxRendererD3D11 :
327
+ case OSVRSupportedRenderers::D3D11 :
327
328
return applyRenderBufferConstructor (n, ConstructBuffersD3D11);
328
329
break ;
329
330
#endif
330
331
#if SUPPORT_OPENGL
331
- case kUnityGfxRendererOpenGL :
332
+ case OSVRSupportedRenderers::OpenGL :
332
333
return applyRenderBufferConstructor (n, ConstructBuffersOpenGL);
333
334
break ;
334
335
#endif
336
+ case OSVRSupportedRenderers::EmptyRenderer:
335
337
default :
336
338
DebugLog (" Device type not supported." );
337
339
return OSVR_RETURN_FAILURE;
@@ -610,7 +612,7 @@ inline void DoRender() {
610
612
611
613
switch (s_deviceType.getDeviceTypeEnum ()) {
612
614
#if SUPPORT_D3D11
613
- case kUnityGfxRendererD3D11 : {
615
+ case OSVRSupportedRenderers::D3D11 : {
614
616
// Render into each buffer using the specified information.
615
617
for (int i = 0 ; i < n; ++i) {
616
618
RenderViewD3D11 (renderInfo[i],
@@ -631,7 +633,7 @@ inline void DoRender() {
631
633
}
632
634
#endif
633
635
#if SUPPORT_OPENGL
634
- case kUnityGfxRendererOpenGL : {
636
+ case OSVRSupportedRenderers::OpenGL : {
635
637
// OpenGL
636
638
// @todo OpenGL path is not working yet
637
639
// Render into each buffer using the specified information.
@@ -649,6 +651,9 @@ inline void DoRender() {
649
651
break ;
650
652
}
651
653
#endif
654
+ case OSVRSupportedRenderers::EmptyRenderer:
655
+ default :
656
+ break ;
652
657
}
653
658
}
654
659
@@ -700,7 +705,7 @@ inline void DoEventGraphicsDeviceD3D11(UnityGfxDeviceEventType eventType) {
700
705
s_deviceType,
701
706
" Should only be able to get in here with a valid device type." );
702
707
BOOST_ASSERT_MSG (
703
- s_deviceType.getDeviceTypeEnum == kUnityGfxRendererD3D11 ,
708
+ s_deviceType.getDeviceTypeEnum () == OSVRSupportedRenderers::D3D11 ,
704
709
" Should only be able to get in here if using D3D11 device type." );
705
710
706
711
switch (eventType) {
@@ -738,7 +743,7 @@ inline void DoEventGraphicsDeviceOpenGL(UnityGfxDeviceEventType eventType) {
738
743
s_deviceType,
739
744
" Should only be able to get in here with a valid device type." );
740
745
BOOST_ASSERT_MSG (
741
- s_deviceType.getDeviceTypeEnum == kUnityGfxRendererOpenGL ,
746
+ s_deviceType.getDeviceTypeEnum () == OSVRSupportedRenderers::OpenGL ,
742
747
" Should only be able to get in here if using OpenGL device type." );
743
748
744
749
switch (eventType) {
0 commit comments