aboutsummaryrefslogtreecommitdiffstats
path: root/pugl/detail/x11.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-03-14 17:17:57 +0100
committerDavid Robillard <d@drobilla.net>2020-03-15 10:24:47 +0100
commit02d565da853b6c7990c5944306b07e0dac69a1f6 (patch)
treef6560013ea4699e607b160192b36d1c95022f4dc /pugl/detail/x11.c
parent919dd0200074cbaac655ee2cb3f8767592f80514 (diff)
downloadpugl-02d565da853b6c7990c5944306b07e0dac69a1f6.tar.gz
pugl-02d565da853b6c7990c5944306b07e0dac69a1f6.tar.bz2
pugl-02d565da853b6c7990c5944306b07e0dac69a1f6.zip
Remove backend resize method
Diffstat (limited to 'pugl/detail/x11.c')
-rw-r--r--pugl/detail/x11.c5
1 files changed, 0 insertions, 5 deletions
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,
};