summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndras Becsi <andras.becsi@theqtcompany.com>2015-05-07 14:09:47 +0200
committerAndras Becsi <andras.becsi@theqtcompany.com>2015-05-07 15:13:19 +0300
commit2b8c1028d8859d391a2c0edf08d044dfead7b3ff (patch)
treeff41d78509b79d0840e8e5aee912c495a7a4a6d9
parent85f2d8624ba68be8817de43c88c18265c2a5d026 (diff)
downloadmeta-boot2qt-2b8c1028d8859d391a2c0edf08d044dfead7b3ff.tar.gz
colibri-vf: Fix EGLNative* typedefs to have a signed type
Chromium expects a signed type, and all other platforms also define a signed type, like Display*, HDC, int, ANativeWindow*, void*. This is a cherry-picked fix from qtglesstream to fix the QtWebEngine build for colibri-vf. Change-Id: I01d5a65b2e7512ebdc383501eacae1349a271039 Reviewed-by: Samuli Piippo <samuli.piippo@theqtcompany.com>
-rw-r--r--recipes/opengldummy/files/headers/EGL/eglplatform.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/recipes/opengldummy/files/headers/EGL/eglplatform.h b/recipes/opengldummy/files/headers/EGL/eglplatform.h
index bcbda98..572c7d5 100644
--- a/recipes/opengldummy/files/headers/EGL/eglplatform.h
+++ b/recipes/opengldummy/files/headers/EGL/eglplatform.h
@@ -105,9 +105,9 @@ typedef void* EGLNativeDisplayType;
105#if 1 105#if 1
106 106
107/* QtGlesStream */ 107/* QtGlesStream */
108typedef unsigned int EGLNativeDisplayType; 108typedef intptr_t EGLNativeDisplayType;
109typedef unsigned int EGLNativeWindowType; 109typedef intptr_t EGLNativeWindowType;
110typedef unsigned int EGLNativePixmapType; 110typedef intptr_t EGLNativePixmapType;
111 111
112#else 112#else
113 113