vlc | branch: master | Thomas Guillem <[email protected]> | 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; _______________________________________________ vlc-commits mailing list [email protected] https://mailman.videolan.org/listinfo/vlc-commits
