summaryrefslogtreecommitdiffstats
path: root/meta-xilinx-core/recipes-graphics/mesa/mesa-demos/0001-src-egl-eglinfo-Align-EXT_platform_device-extension-.patch
blob: fc2108e1ad3bdaed2addf9307e521bcd17005a42 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
From 9470d00850e8b622d963d4d9c61ad1e59972310a Mon Sep 17 00:00:00 2001
From: Madhurkiran Harikrishnan <madhurkiran.harikrishnan@xilinx.com>
Date: Tue, 28 Jan 2020 16:10:54 -0800
Subject: [PATCH 1/2] src: egl: eglinfo: Align EXT_platform_device extension
 macros with khronos

Although the macro definitions are consistent, using the macros name
defined under khronos makes it backward compatible with older eglext.h

Signed-off-by: Madhurkiran Harikrishnan <madhurkiran.harikrishnan@xilinx.com>
upstream-status: Inappropriate [Xilinx specific]
Signed-off-by: Mark Hatle <mark.hatle@amd.com>
---
 src/egl/opengl/eglinfo.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/egl/opengl/eglinfo.c b/src/egl/opengl/eglinfo.c
index 72fe45a..e8a0225 100644
--- a/src/egl/opengl/eglinfo.c
+++ b/src/egl/opengl/eglinfo.c
@@ -305,17 +305,17 @@ main(int argc, char *argv[])
                                                   NULL), "Android platform");
        if (strstr(clientext, "EGL_MESA_platform_gbm") ||
            strstr(clientext, "EGL_KHR_platform_gbm"))
-           ret += doOneDisplay(getPlatformDisplay(EGL_PLATFORM_GBM_MESA,
+           ret += doOneDisplay(getPlatformDisplay(EGL_PLATFORM_GBM_KHR,
                                                   EGL_DEFAULT_DISPLAY,
                                                   NULL), "GBM platform");
        if (strstr(clientext, "EGL_EXT_platform_wayland") ||
            strstr(clientext, "EGL_KHR_platform_wayland"))
-           ret += doOneDisplay(getPlatformDisplay(EGL_PLATFORM_WAYLAND_EXT,
+           ret += doOneDisplay(getPlatformDisplay(EGL_PLATFORM_WAYLAND_KHR,
                                                   EGL_DEFAULT_DISPLAY,
                                                   NULL), "Wayland platform");
        if (strstr(clientext, "EGL_EXT_platform_x11") ||
            strstr(clientext, "EGL_KHR_platform_x11"))
-           ret += doOneDisplay(getPlatformDisplay(EGL_PLATFORM_X11_EXT,
+           ret += doOneDisplay(getPlatformDisplay(EGL_PLATFORM_X11_KHR,
                                                   EGL_DEFAULT_DISPLAY,
                                                   NULL), "X11 platform");
        if (strstr(clientext, "EGL_MESA_platform_surfaceless"))
-- 
2.17.1