Qt: Fix "QOpenGLContext::swapBuffers() called with non-exposed window" warning

This commit is contained in:
Jeffrey Pfau 2015-04-05 18:02:59 -07:00
parent 190ace3003
commit 609a9c5aa0
2 changed files with 1 additions and 1 deletions

View File

@ -8,6 +8,7 @@ Bugfixes:
- Qt: Fix Display object leak when closing a window
- Qt: Fix .deb dependencies
- GBA Audio: FIFOs should not poll DMAs that are not scheduled for audio
- Qt: Fix "QOpenGLContext::swapBuffers() called with non-exposed window" warning
0.2.0: (2015-04-03)
Features:

View File

@ -239,7 +239,6 @@ void Painter::unpause() {
void Painter::initializeGL() {
glClearColor(0, 0, 0, 0);
glClear(GL_COLOR_BUFFER_BIT);
swapBuffers();
}
void Painter::performDraw() {