diff --git a/CHANGES b/CHANGES index f0747acad..1122b4a6a 100644 --- a/CHANGES +++ b/CHANGES @@ -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: diff --git a/src/platform/qt/DisplayGL.cpp b/src/platform/qt/DisplayGL.cpp index 62daeab0d..80f0d5945 100644 --- a/src/platform/qt/DisplayGL.cpp +++ b/src/platform/qt/DisplayGL.cpp @@ -239,7 +239,6 @@ void Painter::unpause() { void Painter::initializeGL() { glClearColor(0, 0, 0, 0); glClear(GL_COLOR_BUFFER_BIT); - swapBuffers(); } void Painter::performDraw() {