From 81e7ffe9a5b0cf39b6a674f6a8a3df4de3cb645e Mon Sep 17 00:00:00 2001 From: Themaister Date: Thu, 13 Dec 2012 10:35:17 +0100 Subject: [PATCH] Don't use a particular bit depth in KMS. --- gfx/context/drm_egl_ctx.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gfx/context/drm_egl_ctx.c b/gfx/context/drm_egl_ctx.c index e26ec1e7117..2953db6f4ce 100644 --- a/gfx/context/drm_egl_ctx.c +++ b/gfx/context/drm_egl_ctx.c @@ -412,9 +412,9 @@ static bool gfx_ctx_set_video_mode( #define EGL_ATTRIBS_BASE \ EGL_SURFACE_TYPE, EGL_WINDOW_BIT, \ - EGL_RED_SIZE, 8, \ - EGL_GREEN_SIZE, 8, \ - EGL_BLUE_SIZE, 8, \ + EGL_RED_SIZE, 0, \ + EGL_GREEN_SIZE, 0, \ + EGL_BLUE_SIZE, 0, \ EGL_DEPTH_SIZE, 0, \ EGL_STENCIL_SIZE, 0