Ensure that video buffers are flushed to the GPU before unlocking the mutex

This commit is contained in:
Jeffrey Pfau 2014-01-16 01:05:32 -08:00
parent e141db9493
commit 39025dedff
1 changed files with 1 additions and 0 deletions

View File

@ -150,6 +150,7 @@ static void _GBASDLRunloop(struct GBAThread* context, struct GLSoftwareRenderer*
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, 256, 256, 0, GL_RGBA, GL_UNSIGNED_BYTE, renderer->d.outputBuffer);
#endif
glDrawArrays(GL_TRIANGLE_FAN, 0, 4);
glFlush();
}
GBASyncWaitFrameEnd(&context->sync);
SDL_GL_SwapBuffers();