dra7xx-evm: weston: add changes for AGL home screen
[AGL/meta-agl.git] / meta-agl-bsp / meta-ti / recipes-arago / weston / weston / 0002-Weston1.9.0-Allow-visual_id-to-be-0.patch
1 From 27cf7d0c260fa4754a021e9f6f92f83e2c99f5f4 Mon Sep 17 00:00:00 2001
2 From: Eric Ruei <e-ruei1@ti.com>
3 Date: Mon, 11 Jan 2016 11:59:19 -0500
4 Subject: [PATCH 2/2] Weston1.9.0: Allow visual_id to be 0
5
6 The inquiry of visual id from egl API eglGetConfigAttrib(EGL_NATIVE_VISUAL_ID)
7 is an optional feature. The visual id will be set to 0 if this feature is
8 not supported. Therefore, the return condition @function match_config_to_visual()
9 should be (id == visual_id || id == 0) instead of (id == visual_id)
10
11 Signed-off-by: Eric Ruei <e-ruei1@ti.com>
12 ---
13  src/gl-renderer.c | 2 +-
14  1 file changed, 1 insertion(+), 1 deletion(-)
15
16 diff --git a/src/gl-renderer.c b/src/gl-renderer.c
17 index d7231f4..e1b925e 100644
18 --- a/src/gl-renderer.c
19 +++ b/src/gl-renderer.c
20 @@ -2194,7 +2194,7 @@ match_config_to_visual(EGLDisplay egl_display,
21                                 &id))
22                         continue;
23  
24 -               if (id == visual_id)
25 +               if (id == visual_id || id == 0)
26                         return i;
27         }
28  
29 -- 
30 1.9.1
31