diff options
author | Max Krummenacher <max.krummenacher@toradex.com> | 2015-01-26 17:35:20 +0100 |
---|---|---|
committer | Max Krummenacher <max.krummenacher@toradex.com> | 2015-01-26 18:58:17 +0100 |
commit | 289340eb5ed790125048b036574222f1c4131185 (patch) | |
tree | 0b6a6783116b1ad5746f8b7a67460876d46caa42 /recipes | |
parent | 3c09e06156e204b479866e37073612ca3a776dae (diff) |
trdx-nv-binaries: don't include X11 headers in eglplatform.h
Use the exact base types as X11 defines them. Newer compilers
through errors when mixing unsigned with unsigned long and
the likes.
Diffstat (limited to 'recipes')
-rw-r--r-- | recipes/trdx-nv-binaries/files/eglplatform.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/recipes/trdx-nv-binaries/files/eglplatform.h b/recipes/trdx-nv-binaries/files/eglplatform.h index a141762..72b5f2d 100644 --- a/recipes/trdx-nv-binaries/files/eglplatform.h +++ b/recipes/trdx-nv-binaries/files/eglplatform.h @@ -110,8 +110,8 @@ typedef void *EGLNativeDisplayType; #if 1 typedef struct _XDisplay *EGLNativeDisplayType; -typedef khronos_uint32_t EGLNativePixmapType; -typedef khronos_uint32_t EGLNativeWindowType; +typedef unsigned long EGLNativePixmapType; +typedef unsigned long EGLNativeWindowType; #else |