summaryrefslogtreecommitdiffstats
path: root/meta-raspberrypi/recipes-graphics/userland/userland/0015-EGL-glplatform.h-define-EGL_CAST.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta-raspberrypi/recipes-graphics/userland/userland/0015-EGL-glplatform.h-define-EGL_CAST.patch')
-rw-r--r--meta-raspberrypi/recipes-graphics/userland/userland/0015-EGL-glplatform.h-define-EGL_CAST.patch32
1 files changed, 0 insertions, 32 deletions
diff --git a/meta-raspberrypi/recipes-graphics/userland/userland/0015-EGL-glplatform.h-define-EGL_CAST.patch b/meta-raspberrypi/recipes-graphics/userland/userland/0015-EGL-glplatform.h-define-EGL_CAST.patch
deleted file mode 100644
index 605d0c043..000000000
--- a/meta-raspberrypi/recipes-graphics/userland/userland/0015-EGL-glplatform.h-define-EGL_CAST.patch
+++ /dev/null
@@ -1,32 +0,0 @@
-From a2182e5437a6664cdb0f3330f6cbee873b6f975a Mon Sep 17 00:00:00 2001
-From: Andrea Galbusera <gizero@gmail.com>
-Date: Fri, 14 Jul 2017 09:52:54 +0200
-Subject: [PATCH 15/16] EGL/glplatform.h: define EGL_CAST
-
-C++ / C typecast macros for special EGL handle values: used by libepoxy code
-The definition comes from the updated version of this header in mesa.
-
-Upstream-Status: Pending
----
- interface/khronos/include/EGL/eglplatform.h | 7 +++++++
- 1 file changed, 7 insertions(+)
-
-diff --git a/interface/khronos/include/EGL/eglplatform.h b/interface/khronos/include/EGL/eglplatform.h
-index 1f7c930..c39d425 100644
---- a/interface/khronos/include/EGL/eglplatform.h
-+++ b/interface/khronos/include/EGL/eglplatform.h
-@@ -202,4 +202,11 @@ EGLAPI void EGLAPIENTRY BEGL_GetDefaultDriverInterfaces(BEGL_DriverInterfaces *i
- #include "interface/khronos/common/khrn_client_mangle.h"
- #endif
-
-+/* C++ / C typecast macros for special EGL handle values */
-+#if defined(__cplusplus)
-+#define EGL_CAST(type, value) (static_cast<type>(value))
-+#else
-+#define EGL_CAST(type, value) ((type) (value))
-+#endif
-+
- #endif /* __eglplatform_h */
---
-2.16.1
-
OpenPOWER on IntegriCloud