From 5ed4119057dc42842699a86b6610f4a3c50ab215 Mon Sep 17 00:00:00 2001 From: wm4 Date: Fri, 30 Dec 2016 21:41:30 +0100 Subject: vo_opengl: egl: fix depth size parameter This was accidentally flipped from 0 to 1 in a previous commit. Actually simply remove it, because 0 is the default value for this parameter anyway. --- video/out/opengl/egl_helpers.c | 1 - 1 file changed, 1 deletion(-) (limited to 'video/out/opengl') diff --git a/video/out/opengl/egl_helpers.c b/video/out/opengl/egl_helpers.c index 0169ab264e..3d937a57aa 100644 --- a/video/out/opengl/egl_helpers.c +++ b/video/out/opengl/egl_helpers.c @@ -66,7 +66,6 @@ static bool create_context(EGLDisplay display, struct mp_log *log, bool probing, EGL_GREEN_SIZE, 1, EGL_BLUE_SIZE, 1, EGL_ALPHA_SIZE, (opts->vo_flags & VOFLAG_ALPHA ) ? 1 : 0, - EGL_DEPTH_SIZE, 1, EGL_RENDERABLE_TYPE, rend, EGL_NONE }; -- cgit v1.2.3