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 630386e569
commit 7ed38b0a6d
2 changed files with 1 additions and 1 deletions

View File

@ -5,6 +5,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

@ -129,7 +129,6 @@ void Display::screenshot() {
void Display::initializeGL() {
glClearColor(0, 0, 0, 0);
glClear(GL_COLOR_BUFFER_BIT);
swapBuffers();
}
void Display::resizeEvent(QResizeEvent* event) {