glFlush != glFinish. doh.
parent
8fae5d49bf
commit
d1683bd65a
|
|
@ -1273,7 +1273,7 @@ BOOL LLWindowMacOSX::setSize(const LLCoordScreen size)
|
|||
|
||||
void LLWindowMacOSX::swapBuffers()
|
||||
{
|
||||
glFlush();
|
||||
glFinish();
|
||||
aglSwapBuffers(mContext);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -985,7 +985,7 @@ void LLWindowSDL::swapBuffers()
|
|||
{
|
||||
if (mWindow)
|
||||
{
|
||||
glFlush();
|
||||
glFinish();
|
||||
SDL_GL_SwapBuffers();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -2858,7 +2858,7 @@ BOOL LLWindowWin32::resetDisplayResolution()
|
|||
|
||||
void LLWindowWin32::swapBuffers()
|
||||
{
|
||||
glFlush();
|
||||
glFinish();
|
||||
SwapBuffers(mhDC);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue