From 02d565da853b6c7990c5944306b07e0dac69a1f6 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 14 Mar 2020 17:17:57 +0100 Subject: Remove backend resize method --- pugl/detail/x11.c | 5 ----- 1 file changed, 5 deletions(-) (limited to 'pugl/detail/x11.c') diff --git a/pugl/detail/x11.c b/pugl/detail/x11.c index ee5fb69..ea7f9a3 100644 --- a/pugl/detail/x11.c +++ b/pugl/detail/x11.c @@ -696,10 +696,6 @@ flushPendingConfigure(PuglView* view) view->frame.width = configure->configure.width; view->frame.height = configure->configure.height; - view->backend->resize(view, - (int)view->frame.width, - (int)view->frame.height); - view->eventFunc(view, configure); configure->type = 0; } @@ -1017,7 +1013,6 @@ puglStubBackend(void) puglStubDestroy, puglStubEnter, puglStubLeave, - puglStubResize, puglStubGetContext, }; -- cgit v1.2.1