Add a workaround for a bug in xorg-server/glx
authorRinat Ibragimov <ibragimovrinat@mail.ru>
Tue, 15 Apr 2014 03:01:43 +0000 (11:01 +0800)
committerXiang, Haihao <haihao.xiang@intel.com>
Tue, 15 Apr 2014 03:07:24 +0000 (11:07 +0800)
See details at https://bugs.freedesktop.org/show_bug.cgi?id=76755

Signed-off-by: Rinat Ibragimov <ibragimovrinat@mail.ru>
Signed-off-by: Xiang, Haihao <haihao.xiang@intel.com>
va/glx/va_glx_impl.c

index e181c9a..1adb369 100644 (file)
@@ -500,6 +500,15 @@ static int create_tfp_surface(VADriverContextP ctx, VASurfaceGLXP pSurfaceGLX)
         GLX_RED_SIZE,           8,
         GLX_GREEN_SIZE,         8,
         GLX_BLUE_SIZE,          8,
+        /*
+         * depth test isn't enabled in the implementaion of VA GLX,
+         * so depth buffer is unnecessary. However to workaround a
+         * bug in older verson of xorg-server, always require a depth
+         * buffer.
+         *
+         * See https://bugs.freedesktop.org/show_bug.cgi?id=76755
+         */
+        GLX_DEPTH_SIZE,         1,
         GL_NONE,
     };
     for (attrib = fbconfig_attrs; *attrib != GL_NONE; attrib += 2)