aboutsummaryrefslogtreecommitdiffstats
path: root/pugl
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2019-06-25 21:42:55 +0200
committerDavid Robillard <d@drobilla.net>2019-06-27 19:41:48 +0200
commitbf7bc771b2c6c77be9b935b8bfbf56677fba1754 (patch)
tree03c561b2139b07576d1ee2aac10d144d5f0bb284 /pugl
parenta6878f88c187d5957f22b9023fabe350ea702e5c (diff)
downloadpugl-bf7bc771b2c6c77be9b935b8bfbf56677fba1754.tar.gz
pugl-bf7bc771b2c6c77be9b935b8bfbf56677fba1754.tar.bz2
pugl-bf7bc771b2c6c77be9b935b8bfbf56677fba1754.zip
Defer to NSOpenGLView reshape method
This apparently does nothing, but the compiler warns about the missing super call.
Diffstat (limited to 'pugl')
-rw-r--r--pugl/pugl_osx.m1
1 files changed, 1 insertions, 0 deletions
diff --git a/pugl/pugl_osx.m b/pugl/pugl_osx.m
index 01b4d51..aaae212 100644
--- a/pugl/pugl_osx.m
+++ b/pugl/pugl_osx.m
@@ -173,6 +173,7 @@ struct PuglInternalsImpl {
- (void) reshape
{
+ [super reshape];
[[self openGLContext] update];
if (!puglview) {