mirror of
https://github.com/Perlmint/glew-cmake.git
synced 2025-03-20 15:56:16 +00:00
Generate Sources of master updated at Wed Sep 18 13:43:07 GMT 2019
This commit is contained in:
parent
371895de42
commit
ceb7145f3e
1255
doc/glew.html
1255
doc/glew.html
File diff suppressed because it is too large
Load Diff
@ -9209,6 +9209,15 @@ typedef void (GLAPIENTRY * PFNGLEGLIMAGETARGETTEXTURESTORAGEEXTPROC) (GLuint tex
|
||||
|
||||
#endif /* GL_EXT_EGL_image_storage */
|
||||
|
||||
/* ---------------------------- GL_EXT_EGL_sync ---------------------------- */
|
||||
|
||||
#ifndef GL_EXT_EGL_sync
|
||||
#define GL_EXT_EGL_sync 1
|
||||
|
||||
#define GLEW_EXT_EGL_sync GLEW_GET_VAR(__GLEW_EXT_EGL_sync)
|
||||
|
||||
#endif /* GL_EXT_EGL_sync */
|
||||
|
||||
/* --------------------------- GL_EXT_YUV_target --------------------------- */
|
||||
|
||||
#ifndef GL_EXT_YUV_target
|
||||
@ -25743,6 +25752,7 @@ GLEW_VAR_EXPORT GLboolean __GLEW_EXT_Cg_shader;
|
||||
GLEW_VAR_EXPORT GLboolean __GLEW_EXT_EGL_image_array;
|
||||
GLEW_VAR_EXPORT GLboolean __GLEW_EXT_EGL_image_external_wrap_modes;
|
||||
GLEW_VAR_EXPORT GLboolean __GLEW_EXT_EGL_image_storage;
|
||||
GLEW_VAR_EXPORT GLboolean __GLEW_EXT_EGL_sync;
|
||||
GLEW_VAR_EXPORT GLboolean __GLEW_EXT_YUV_target;
|
||||
GLEW_VAR_EXPORT GLboolean __GLEW_EXT_abgr;
|
||||
GLEW_VAR_EXPORT GLboolean __GLEW_EXT_base_instance;
|
||||
|
16
src/glew.c
16
src/glew.c
@ -3771,6 +3771,7 @@ GLboolean __GLEW_EXT_Cg_shader = GL_FALSE;
|
||||
GLboolean __GLEW_EXT_EGL_image_array = GL_FALSE;
|
||||
GLboolean __GLEW_EXT_EGL_image_external_wrap_modes = GL_FALSE;
|
||||
GLboolean __GLEW_EXT_EGL_image_storage = GL_FALSE;
|
||||
GLboolean __GLEW_EXT_EGL_sync = GL_FALSE;
|
||||
GLboolean __GLEW_EXT_YUV_target = GL_FALSE;
|
||||
GLboolean __GLEW_EXT_abgr = GL_FALSE;
|
||||
GLboolean __GLEW_EXT_base_instance = GL_FALSE;
|
||||
@ -5261,6 +5262,9 @@ static const char * _glewExtensionLookup[] = {
|
||||
#ifdef GL_EXT_EGL_image_storage
|
||||
"GL_EXT_EGL_image_storage",
|
||||
#endif
|
||||
#ifdef GL_EXT_EGL_sync
|
||||
"GL_EXT_EGL_sync",
|
||||
#endif
|
||||
#ifdef GL_EXT_YUV_target
|
||||
"GL_EXT_YUV_target",
|
||||
#endif
|
||||
@ -7201,7 +7205,7 @@ static const char * _glewExtensionLookup[] = {
|
||||
|
||||
|
||||
/* Detected in the extension string or strings */
|
||||
static GLboolean _glewExtensionString[932];
|
||||
static GLboolean _glewExtensionString[933];
|
||||
/* Detected via extension string or experimental mode */
|
||||
static GLboolean* _glewExtensionEnabled[] = {
|
||||
#ifdef GL_3DFX_multisample
|
||||
@ -8065,6 +8069,9 @@ static GLboolean* _glewExtensionEnabled[] = {
|
||||
#ifdef GL_EXT_EGL_image_storage
|
||||
&__GLEW_EXT_EGL_image_storage,
|
||||
#endif
|
||||
#ifdef GL_EXT_EGL_sync
|
||||
&__GLEW_EXT_EGL_sync,
|
||||
#endif
|
||||
#ifdef GL_EXT_YUV_target
|
||||
&__GLEW_EXT_YUV_target,
|
||||
#endif
|
||||
@ -25248,6 +25255,13 @@ GLboolean GLEWAPIENTRY glewIsSupported (const char* name)
|
||||
continue;
|
||||
}
|
||||
#endif
|
||||
#ifdef GL_EXT_EGL_sync
|
||||
if (_glewStrSame3(&pos, &len, (const GLubyte*)"EGL_sync", 8))
|
||||
{
|
||||
ret = GLEW_EXT_EGL_sync;
|
||||
continue;
|
||||
}
|
||||
#endif
|
||||
#ifdef GL_EXT_YUV_target
|
||||
if (_glewStrSame3(&pos, &len, (const GLubyte*)"YUV_target", 10))
|
||||
{
|
||||
|
@ -4244,6 +4244,15 @@ static void _glewInfo_GL_EXT_EGL_image_storage (void)
|
||||
|
||||
#endif /* GL_EXT_EGL_image_storage */
|
||||
|
||||
#ifdef GL_EXT_EGL_sync
|
||||
|
||||
static void _glewInfo_GL_EXT_EGL_sync (void)
|
||||
{
|
||||
glewPrintExt("GL_EXT_EGL_sync", GLEW_EXT_EGL_sync, glewIsSupported("GL_EXT_EGL_sync"), glewGetExtension("GL_EXT_EGL_sync"));
|
||||
}
|
||||
|
||||
#endif /* GL_EXT_EGL_sync */
|
||||
|
||||
#ifdef GL_EXT_YUV_target
|
||||
|
||||
static void _glewInfo_GL_EXT_YUV_target (void)
|
||||
@ -15637,6 +15646,9 @@ static void glewInfo (void)
|
||||
#ifdef GL_EXT_EGL_image_storage
|
||||
_glewInfo_GL_EXT_EGL_image_storage();
|
||||
#endif /* GL_EXT_EGL_image_storage */
|
||||
#ifdef GL_EXT_EGL_sync
|
||||
_glewInfo_GL_EXT_EGL_sync();
|
||||
#endif /* GL_EXT_EGL_sync */
|
||||
#ifdef GL_EXT_YUV_target
|
||||
_glewInfo_GL_EXT_YUV_target();
|
||||
#endif /* GL_EXT_YUV_target */
|
||||
|
Loading…
Reference in New Issue
Block a user