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 fde22e2 commit 6c589d2Copy full SHA for 6c589d2
src/Layers/xrRenderGL/glHW.cpp
@@ -130,8 +130,9 @@ void CHW::CreateDevice( HWND hWnd, bool move_window )
130
#endif // DEBUG
131
132
// Clip control ensures compatibility with D3D device coordinates.
133
- // TODO: Fix these differences in the blenders/shaders.
134
- CHK_GL(glClipControl(GL_UPPER_LEFT, GL_ZERO_TO_ONE));
+ // TODO: OGL: Also use GL_UPPER_LEFT to match D3D.
+ // TODO: OGL: Fix these differences in the blenders/shaders.
135
+ CHK_GL(glClipControl(GL_LOWER_LEFT, GL_ZERO_TO_ONE));
136
137
// Create render target and depth-stencil views here
138
UpdateViews();
0 commit comments