mirror of
https://src.fedoraproject.org/rpms/mesa.git
synced 2024-11-28 11:06:25 +00:00
Update eglext.h to 20161230 version this brings in some new defines needed
by some apps / libraries
This commit is contained in:
parent
3313153b56
commit
ce722cdceb
1 changed files with 7 additions and 0 deletions
7
eglext.h
7
eglext.h
|
@ -40,6 +40,13 @@ extern "C" {
|
||||||
|
|
||||||
#define EGL_EGLEXT_VERSION 20161230
|
#define EGL_EGLEXT_VERSION 20161230
|
||||||
|
|
||||||
|
/* 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
|
||||||
|
|
||||||
/* Generated C header for:
|
/* Generated C header for:
|
||||||
* API: egl
|
* API: egl
|
||||||
* Versions considered: .*
|
* Versions considered: .*
|
||||||
|
|
Loading…
Reference in a new issue