summaryrefslogtreecommitdiffstats
path: root/video/out/opengl/context_mali_fbdev.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2017-04-06 14:50:19 +0200
committerwm4 <wm4@nowhere>2017-04-06 14:50:19 +0200
commitc9d3a79187a9a45ecae8e97af9b68427d1f06eac (patch)
tree97e28437706cf42e7b31c3cc8521209f8bea40ab /video/out/opengl/context_mali_fbdev.c
parent4e6867c771a53767f9293517af8475e9d7845695 (diff)
downloadmpv-c9d3a79187a9a45ecae8e97af9b68427d1f06eac.tar.bz2
mpv-c9d3a79187a9a45ecae8e97af9b68427d1f06eac.tar.xz
vo_opengl: add a generic EGL function loader function
This is pretty trivial, but also quite annoying due to details like mismatching eglGetProcAddress() function signature (most callers just cast the function pointer), and ARM/Linux hacks. So move them all to one place.
Diffstat (limited to 'video/out/opengl/context_mali_fbdev.c')
-rw-r--r--video/out/opengl/context_mali_fbdev.c13
1 files changed, 1 insertions, 12 deletions
diff --git a/video/out/opengl/context_mali_fbdev.c b/video/out/opengl/context_mali_fbdev.c
index e76d220939..66daa7f9ee 100644
--- a/video/out/opengl/context_mali_fbdev.c
+++ b/video/out/opengl/context_mali_fbdev.c
@@ -49,16 +49,6 @@ static bool get_fbdev_size(int *w, int *h)
return ok;
}
-static void *get_proc_address(const GLubyte *name)
-{
- void *p = eglGetProcAddress(name);
- // EGL 1.4 (supported by the MALI drivers) does not necessarily return
- // function pointers for core functions.
- if (!p)
- p = dlsym(RTLD_DEFAULT, name);
- return p;
-}
-
struct priv {
struct mp_log *log;
struct GL *gl;
@@ -127,8 +117,7 @@ static int mali_init(struct MPGLContext *ctx, int flags)
ctx->gl = talloc_zero(ctx, GL);
- const char *exts = eglQueryString(p->egl_display, EGL_EXTENSIONS);
- mpgl_load_functions(ctx->gl, get_proc_address, exts, p->log);
+ mpegl_load_functions(ctx->gl, p->log);
return 0;