summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorEmmanuele Bassi <ebassi@gmail.com>2017-07-21 12:11:40 +0100
committerGitHub <noreply@github.com>2017-07-21 12:11:40 +0100
commit516b4fb8d0bced1fdbb9faa633c25d958de146bc (patch)
tree5a339d7c6c5530309a1dcd20bf0a249a24ebe2c5 /src
parente0426c94f6d0b45452d7a5f1b60a0d569be0db47 (diff)
parentebe3a53db1c0bb34e1ca963b95d1f222115f93f8 (diff)
downloadlibepoxy-516b4fb8d0bced1fdbb9faa633c25d958de146bc.tar.gz
Merge pull request #134 from fooishbar/add-eglcast-def
Add fallback definition for EGL_CAST
Diffstat (limited to 'src')
-rw-r--r--src/gen_dispatch.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/gen_dispatch.py b/src/gen_dispatch.py
index 306a83b..c22fd82 100644
--- a/src/gen_dispatch.py
+++ b/src/gen_dispatch.py
@@ -491,6 +491,15 @@ class Generator(object):
self.outln('#include "epoxy/gl.h"')
if self.target == "egl":
self.outln('#include "EGL/eglplatform.h"')
+ # Account for older eglplatform.h, which doesn't define
+ # the EGL_CAST macro.
+ self.outln('#ifndef EGL_CAST')
+ self.outln('#if defined(__cplusplus)')
+ self.outln('#define EGL_CAST(type, value) (static_cast<type>(value))')
+ self.outln('#else')
+ self.outln('#define EGL_CAST(type, value) ((type) (value))')
+ self.outln('#endif')
+ self.outln('#endif')
else:
# Add some ridiculous inttypes.h redefinitions that are
# from khrplatform.h and not included in the XML. We