We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6d2cde commit 5ff1737Copy full SHA for 5ff1737
virtualdesktop-openxr/visibility_mask.cpp
@@ -88,7 +88,8 @@ namespace virtualdesktop_openxr {
88
break;
89
case XR_VISIBILITY_MASK_TYPE_LINE_LOOP_KHR:
90
stencilDesc.StencilType = ovrFovStencil_BorderLine;
91
- indicesStride = 2;
+ // TODO: Not so sure why Virtual Desktop & Oculus OVR differ here.
92
+ indicesStride = m_useOculusRuntime ? 1 : 2;
93
94
default:
95
return XR_ERROR_VALIDATION_FAILURE;
0 commit comments