From b0d931d600786a8988c49175c206fe758842a5ad Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 27 Jun 2019 21:23:48 +0200 Subject: Remove redundant glFlush on Windows --- pugl/pugl_win.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/pugl/pugl_win.cpp b/pugl/pugl_win.cpp index d0d91d6..6185c91 100644 --- a/pugl/pugl_win.cpp +++ b/pugl/pugl_win.cpp @@ -84,7 +84,6 @@ puglLeaveContext(PuglView* view, bool flush) { #ifdef PUGL_HAVE_GL if (view->ctx_type == PUGL_GL && flush) { - glFlush(); SwapBuffers(view->impl->hdc); } #endif -- cgit v1.2.1