diff options
author | Alexander von Gluck IV <[email protected]> | 2015-05-13 17:13:37 -0500 |
---|---|---|
committer | Alexander von Gluck IV <[email protected]> | 2015-05-14 14:08:37 -0400 |
commit | 8362068c1b28eb2d3e334abc980c4711957d61fd (patch) | |
tree | 18022327791b5e8899bcd0442ce48c3c2640a616 /src/egl/main/eglimage.h | |
parent | 175cbb447ae85b93b8b0244f345064763131481f (diff) |
egl: Add needed extern "C" for C++ access
* Haiku's egl driver is C++ due to the interface natively being C++
Reviewed-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/egl/main/eglimage.h')
-rw-r--r-- | src/egl/main/eglimage.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/egl/main/eglimage.h b/src/egl/main/eglimage.h index 50a87a18890..d06f91cd1a4 100644 --- a/src/egl/main/eglimage.h +++ b/src/egl/main/eglimage.h @@ -35,6 +35,11 @@ #include "egltypedefs.h" #include "egldisplay.h" + +#ifdef __cplusplus +extern "C" { +#endif + struct _egl_image_attrib_int { EGLint Value; @@ -161,4 +166,8 @@ _eglGetImageHandle(_EGLImage *img) } +#ifdef __cplusplus +} +#endif + #endif /* EGLIMAGE_INCLUDED */ |