From aaafd482ccd3776203832b10db8ce4336a3bb1eb Mon Sep 17 00:00:00 2001 From: Lior Halphon Date: Thu, 22 Nov 2018 22:59:29 +0200 Subject: [PATCH] Fixed Cocoa OpenGL regression, it was completely broken --- Cocoa/GBViewGL.m | 1 + 1 file changed, 1 insertion(+) diff --git a/Cocoa/GBViewGL.m b/Cocoa/GBViewGL.m index 15aed088..b80973e4 100644 --- a/Cocoa/GBViewGL.m +++ b/Cocoa/GBViewGL.m @@ -27,6 +27,7 @@ { [super flip]; dispatch_async(dispatch_get_main_queue(), ^{ + [self.internalView setNeedsDisplay:YES]; [self setNeedsDisplay:YES]; }); }