mirror of
https://github.com/Perlmint/glew-cmake.git
synced 2025-02-19 15:10:42 +00:00
Generate Sources of master updated at Fri Aug 14 00:01:24 GMT 2020
This commit is contained in:
parent
c87ee50fb5
commit
9f109bec6c
@ -894,6 +894,17 @@ typedef EGLBoolean ( * PFNEGLQUERYDISPLAYATTRIBEXTPROC) (EGLDisplay dpy, EGLint
|
||||
|
||||
#endif /* EGL_EXT_device_query */
|
||||
|
||||
/* ----------------------- EGL_EXT_device_query_name ----------------------- */
|
||||
|
||||
#ifndef EGL_EXT_device_query_name
|
||||
#define EGL_EXT_device_query_name 1
|
||||
|
||||
#define EGL_RENDERER_EXT 0x335F
|
||||
|
||||
#define EGLEW_EXT_device_query_name EGLEW_GET_VAR(__EGLEW_EXT_device_query_name)
|
||||
|
||||
#endif /* EGL_EXT_device_query_name */
|
||||
|
||||
/* ------------------ EGL_EXT_gl_colorspace_bt2020_linear ------------------ */
|
||||
|
||||
#ifndef EGL_EXT_gl_colorspace_bt2020_linear
|
||||
@ -2944,6 +2955,7 @@ EGLEW_VAR_EXPORT GLboolean __EGLEW_EXT_device_drm;
|
||||
EGLEW_VAR_EXPORT GLboolean __EGLEW_EXT_device_enumeration;
|
||||
EGLEW_VAR_EXPORT GLboolean __EGLEW_EXT_device_openwf;
|
||||
EGLEW_VAR_EXPORT GLboolean __EGLEW_EXT_device_query;
|
||||
EGLEW_VAR_EXPORT GLboolean __EGLEW_EXT_device_query_name;
|
||||
EGLEW_VAR_EXPORT GLboolean __EGLEW_EXT_gl_colorspace_bt2020_linear;
|
||||
EGLEW_VAR_EXPORT GLboolean __EGLEW_EXT_gl_colorspace_bt2020_pq;
|
||||
EGLEW_VAR_EXPORT GLboolean __EGLEW_EXT_gl_colorspace_display_p3;
|
||||
|
11
src/glew.c
11
src/glew.c
@ -19615,6 +19615,7 @@ GLboolean __EGLEW_EXT_device_drm = GL_FALSE;
|
||||
GLboolean __EGLEW_EXT_device_enumeration = GL_FALSE;
|
||||
GLboolean __EGLEW_EXT_device_openwf = GL_FALSE;
|
||||
GLboolean __EGLEW_EXT_device_query = GL_FALSE;
|
||||
GLboolean __EGLEW_EXT_device_query_name = GL_FALSE;
|
||||
GLboolean __EGLEW_EXT_gl_colorspace_bt2020_linear = GL_FALSE;
|
||||
GLboolean __EGLEW_EXT_gl_colorspace_bt2020_pq = GL_FALSE;
|
||||
GLboolean __EGLEW_EXT_gl_colorspace_display_p3 = GL_FALSE;
|
||||
@ -20721,6 +20722,9 @@ GLenum eglewInit (EGLDisplay display)
|
||||
EGLEW_EXT_device_query = _glewSearchExtension("EGL_EXT_device_query", extStart, extEnd);
|
||||
if (glewExperimental || EGLEW_EXT_device_query) EGLEW_EXT_device_query = !_glewInit_EGL_EXT_device_query();
|
||||
#endif /* EGL_EXT_device_query */
|
||||
#ifdef EGL_EXT_device_query_name
|
||||
EGLEW_EXT_device_query_name = _glewSearchExtension("EGL_EXT_device_query_name", extStart, extEnd);
|
||||
#endif /* EGL_EXT_device_query_name */
|
||||
#ifdef EGL_EXT_gl_colorspace_bt2020_linear
|
||||
EGLEW_EXT_gl_colorspace_bt2020_linear = _glewSearchExtension("EGL_EXT_gl_colorspace_bt2020_linear", extStart, extEnd);
|
||||
#endif /* EGL_EXT_gl_colorspace_bt2020_linear */
|
||||
@ -31206,6 +31210,13 @@ GLboolean eglewIsSupported (const char* name)
|
||||
continue;
|
||||
}
|
||||
#endif
|
||||
#ifdef EGL_EXT_device_query_name
|
||||
if (_glewStrSame3(&pos, &len, (const GLubyte*)"device_query_name", 17))
|
||||
{
|
||||
ret = EGLEW_EXT_device_query_name;
|
||||
continue;
|
||||
}
|
||||
#endif
|
||||
#ifdef EGL_EXT_gl_colorspace_bt2020_linear
|
||||
if (_glewStrSame3(&pos, &len, (const GLubyte*)"gl_colorspace_bt2020_linear", 27))
|
||||
{
|
||||
|
@ -12104,6 +12104,15 @@ static void _glewInfo_EGL_EXT_device_query (void)
|
||||
|
||||
#endif /* EGL_EXT_device_query */
|
||||
|
||||
#ifdef EGL_EXT_device_query_name
|
||||
|
||||
static void _glewInfo_EGL_EXT_device_query_name (void)
|
||||
{
|
||||
glewPrintExt("EGL_EXT_device_query_name", EGLEW_EXT_device_query_name, eglewIsSupported("EGL_EXT_device_query_name"), eglewGetExtension("EGL_EXT_device_query_name"));
|
||||
}
|
||||
|
||||
#endif /* EGL_EXT_device_query_name */
|
||||
|
||||
#ifdef EGL_EXT_gl_colorspace_bt2020_linear
|
||||
|
||||
static void _glewInfo_EGL_EXT_gl_colorspace_bt2020_linear (void)
|
||||
@ -18131,6 +18140,9 @@ static void eglewInfo ()
|
||||
#ifdef EGL_EXT_device_query
|
||||
_glewInfo_EGL_EXT_device_query();
|
||||
#endif /* EGL_EXT_device_query */
|
||||
#ifdef EGL_EXT_device_query_name
|
||||
_glewInfo_EGL_EXT_device_query_name();
|
||||
#endif /* EGL_EXT_device_query_name */
|
||||
#ifdef EGL_EXT_gl_colorspace_bt2020_linear
|
||||
_glewInfo_EGL_EXT_gl_colorspace_bt2020_linear();
|
||||
#endif /* EGL_EXT_gl_colorspace_bt2020_linear */
|
||||
|
Loading…
Reference in New Issue
Block a user