summaryrefslogtreecommitdiffstats
path: root/video/out/gl_common.h
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-05-31 21:53:04 +0200
committerwm4 <wm4@nowhere>2014-05-31 21:53:04 +0200
commit8178b80748e79b2aac9cb712a82c949cb34b1e6d (patch)
treebd4b6482ad0f5d6ba0a3e3baa2ab23f512a588f0 /video/out/gl_common.h
parent9f6e8d64de18d6bc57ee3338d6b900d669f35c0b (diff)
downloadmpv-8178b80748e79b2aac9cb712a82c949cb34b1e6d.tar.bz2
mpv-8178b80748e79b2aac9cb712a82c949cb34b1e6d.tar.xz
gl_x11: always require some GLX API functions, avoid dlsym()
The functions glXGetProcAddressARB() and glXQueryExtensionsString() were loaded using dlsym(). This could fail when compiling to libmpv, because then dlopen(NULL, ...) will look in the main program's list of libraries, and the libGL linked to libmpv is never considered. (Don't know if this somehow could be worked around.) The result is that using vo_opengl with libmpv can fail. Avoid this by not using dlsym(). glXGetProcAddressARB() was already used directly in the same file, and that never caused any problems. (Still add it to the configure test.) glXQueryExtensionsString() is documented as added in GLX 1.1 - that's ancient.
Diffstat (limited to 'video/out/gl_common.h')
-rw-r--r--video/out/gl_common.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/video/out/gl_common.h b/video/out/gl_common.h
index 6f973e23be..622f1f2659 100644
--- a/video/out/gl_common.h
+++ b/video/out/gl_common.h
@@ -208,8 +208,6 @@ struct gl_hwdec_driver {
extern const struct gl_hwdec_driver *mpgl_hwdec_drivers[];
-void *mp_getdladdr(const char *s);
-
void mpgl_load_functions(GL *gl, void *(*getProcAddress)(const GLubyte *),
const char *ext2, struct mp_log *log);