[vlc-commits] opengl: display: don't check for getProcAddress

Thomas Guillem git at videolan.org
Wed May 23 12:45:15 CEST 2018


vlc | branch: master | Thomas Guillem <thomas at gllm.fr> | Wed May 23 08:51:15 2018 +0200| [cd8a4fea2790eb2bd4cb842a7d35e6a757267015] | committer: Thomas Guillem

opengl: display: don't check for getProcAddress

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=cd8a4fea2790eb2bd4cb842a7d35e6a757267015
---

 modules/video_output/opengl/vout_helper.c | 5 -----
 1 file changed, 5 deletions(-)

diff --git a/modules/video_output/opengl/vout_helper.c b/modules/video_output/opengl/vout_helper.c
index bbd156bb85..12c3ee8b86 100644
--- a/modules/video_output/opengl/vout_helper.c
+++ b/modules/video_output/opengl/vout_helper.c
@@ -733,11 +733,6 @@ vout_display_opengl_t *vout_display_opengl_New(video_format_t *fmt,
                                                vlc_gl_t *gl,
                                                const vlc_viewpoint_t *viewpoint)
 {
-    if (gl->getProcAddress == NULL) {
-        msg_Err(gl, "getProcAddress not implemented, bailing out");
-        return NULL;
-    }
-
     vout_display_opengl_t *vgl = calloc(1, sizeof(*vgl));
     if (!vgl)
         return NULL;



More information about the vlc-commits mailing list