summaryrefslogtreecommitdiffstats
path: root/video/out/gl_common.h
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2015-05-13 21:58:37 +0200
committerwm4 <wm4@nowhere>2015-05-13 21:58:37 +0200
commit7e21f6fd0049e14e384758237fcfe3ef03d93d1f (patch)
tree480c7e4ca774c474e564343c083f6170c35ab706 /video/out/gl_common.h
parent0468a4ea47cb42de3406dc4e3737c8595cb556bc (diff)
downloadmpv-7e21f6fd0049e14e384758237fcfe3ef03d93d1f.tar.bz2
mpv-7e21f6fd0049e14e384758237fcfe3ef03d93d1f.tar.xz
vo_opengl: remove some more Cocoa resize leftovers
Diffstat (limited to 'video/out/gl_common.h')
-rw-r--r--video/out/gl_common.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/video/out/gl_common.h b/video/out/gl_common.h
index feeb3e59f4..7a941d78eb 100644
--- a/video/out/gl_common.h
+++ b/video/out/gl_common.h
@@ -107,13 +107,6 @@ typedef struct MPGLContext {
// version is not available, and newer versions are incompatible.)
bool (*config_window)(struct MPGLContext *ctx, int flags);
- // An optional function to register a resize callback in the backend that
- // can be called on separate thread to handle resize events immediately
- // (without waiting for vo_check_events, which will come later for the
- // proper resize)
- void (*register_resize_callback)(struct vo *vo,
- void (*cb)(struct vo *vo, int w, int h));
-
// Optional callback on the beginning of a frame. The frame will be finished
// with swapGlBuffers(). This returns false if use of the OpenGL context
// should be avoided.