summaryrefslogtreecommitdiffstats
path: root/video/out/opengl/video.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2015-11-06 13:59:33 +0100
committerwm4 <wm4@nowhere>2015-11-06 13:59:33 +0100
commitcfa4952f7cf424157eed60e30291336922776d53 (patch)
treed5669fb18e596867c2e74aa43fe9f55e293b9dff /video/out/opengl/video.c
parent945df5735783fedd85318f2c0bb45bd3ace8f9c3 (diff)
downloadmpv-cfa4952f7cf424157eed60e30291336922776d53.tar.bz2
mpv-cfa4952f7cf424157eed60e30291336922776d53.tar.xz
vo_opengl: glBindBufferBase is not part of GL 2.1/GLES 2.0
Commit 27dc834f added it as such. Also remove the check for glUniformBlockBinding() - it's part of an extension, and the check glGetUniformBlockIndex() already checks whether the extension is fully available.
Diffstat (limited to 'video/out/opengl/video.c')
-rw-r--r--video/out/opengl/video.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/video/out/opengl/video.c b/video/out/opengl/video.c
index cd638ccd5e..d69d58f5e3 100644
--- a/video/out/opengl/video.c
+++ b/video/out/opengl/video.c
@@ -2422,7 +2422,7 @@ static void check_gl_features(struct gl_video *p)
if (p->opts.prescale == 2) {
if (p->opts.nnedi3_opts->upload == NNEDI3_UPLOAD_UBO) {
// Check features for uniform buffer objects.
- if (!p->gl->GetUniformBlockIndex || !p->gl->UniformBlockBinding) {
+ if (!p->gl->BindBufferBase || !p->gl->GetUniformBlockIndex) {
MP_WARN(p, "Disabling NNEDI3 (OpenGL 3.1 required).\n");
p->opts.prescale = 0;
}