|
|
@ -1,5 +1,6 @@
|
|
|
|
/*
|
|
|
|
/*
|
|
|
|
** The OpenGL Extension Wrangler Library
|
|
|
|
** The OpenGL Extension Wrangler Library
|
|
|
|
|
|
|
|
** Copyright (C) 2008-2017, Nigel Stewart <nigels[]users sourceforge net>
|
|
|
|
** Copyright (C) 2002-2008, Milan Ikits <milan ikits[]ieee org>
|
|
|
|
** Copyright (C) 2002-2008, Milan Ikits <milan ikits[]ieee org>
|
|
|
|
** Copyright (C) 2002-2008, Marcelo E. Magallon <mmagallo[]debian org>
|
|
|
|
** Copyright (C) 2002-2008, Marcelo E. Magallon <mmagallo[]debian org>
|
|
|
|
** Copyright (C) 2002, Lev Povalahev
|
|
|
|
** Copyright (C) 2002, Lev Povalahev
|
|
|
@ -97,7 +98,7 @@
|
|
|
|
#include <X11/Xlib.h>
|
|
|
|
#include <X11/Xlib.h>
|
|
|
|
#include <X11/Xutil.h>
|
|
|
|
#include <X11/Xutil.h>
|
|
|
|
#include <X11/Xmd.h>
|
|
|
|
#include <X11/Xmd.h>
|
|
|
|
#include "Pkgs/glew.h"
|
|
|
|
#include <GL/glew.h>
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
extern "C" {
|
|
|
@ -200,12 +201,12 @@ typedef Display* ( * PFNGLXGETCURRENTDISPLAYPROC) (void);
|
|
|
|
#ifndef GLX_VERSION_1_3
|
|
|
|
#ifndef GLX_VERSION_1_3
|
|
|
|
#define GLX_VERSION_1_3 1
|
|
|
|
#define GLX_VERSION_1_3 1
|
|
|
|
|
|
|
|
|
|
|
|
#define GLX_RGBA_BIT 0x00000001
|
|
|
|
|
|
|
|
#define GLX_FRONT_LEFT_BUFFER_BIT 0x00000001
|
|
|
|
#define GLX_FRONT_LEFT_BUFFER_BIT 0x00000001
|
|
|
|
|
|
|
|
#define GLX_RGBA_BIT 0x00000001
|
|
|
|
#define GLX_WINDOW_BIT 0x00000001
|
|
|
|
#define GLX_WINDOW_BIT 0x00000001
|
|
|
|
#define GLX_COLOR_INDEX_BIT 0x00000002
|
|
|
|
#define GLX_COLOR_INDEX_BIT 0x00000002
|
|
|
|
#define GLX_PIXMAP_BIT 0x00000002
|
|
|
|
|
|
|
|
#define GLX_FRONT_RIGHT_BUFFER_BIT 0x00000002
|
|
|
|
#define GLX_FRONT_RIGHT_BUFFER_BIT 0x00000002
|
|
|
|
|
|
|
|
#define GLX_PIXMAP_BIT 0x00000002
|
|
|
|
#define GLX_BACK_LEFT_BUFFER_BIT 0x00000004
|
|
|
|
#define GLX_BACK_LEFT_BUFFER_BIT 0x00000004
|
|
|
|
#define GLX_PBUFFER_BIT 0x00000004
|
|
|
|
#define GLX_PBUFFER_BIT 0x00000004
|
|
|
|
#define GLX_BACK_RIGHT_BUFFER_BIT 0x00000008
|
|
|
|
#define GLX_BACK_RIGHT_BUFFER_BIT 0x00000008
|
|
|
@ -362,10 +363,39 @@ extern void ( * glXGetProcAddress (const GLubyte *procName)) (void);
|
|
|
|
#define GLX_GPU_NUM_RB_AMD 0x21A7
|
|
|
|
#define GLX_GPU_NUM_RB_AMD 0x21A7
|
|
|
|
#define GLX_GPU_NUM_SPI_AMD 0x21A8
|
|
|
|
#define GLX_GPU_NUM_SPI_AMD 0x21A8
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
typedef void ( * PFNGLXBLITCONTEXTFRAMEBUFFERAMDPROC) (GLXContext dstCtx, GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter);
|
|
|
|
|
|
|
|
typedef GLXContext ( * PFNGLXCREATEASSOCIATEDCONTEXTAMDPROC) (unsigned int id, GLXContext share_list);
|
|
|
|
|
|
|
|
typedef GLXContext ( * PFNGLXCREATEASSOCIATEDCONTEXTATTRIBSAMDPROC) (unsigned int id, GLXContext share_context, const int* attribList);
|
|
|
|
|
|
|
|
typedef Bool ( * PFNGLXDELETEASSOCIATEDCONTEXTAMDPROC) (GLXContext ctx);
|
|
|
|
|
|
|
|
typedef unsigned int ( * PFNGLXGETCONTEXTGPUIDAMDPROC) (GLXContext ctx);
|
|
|
|
|
|
|
|
typedef GLXContext ( * PFNGLXGETCURRENTASSOCIATEDCONTEXTAMDPROC) (void);
|
|
|
|
|
|
|
|
typedef unsigned int ( * PFNGLXGETGPUIDSAMDPROC) (unsigned int maxCount, unsigned int* ids);
|
|
|
|
|
|
|
|
typedef int ( * PFNGLXGETGPUINFOAMDPROC) (unsigned int id, int property, GLenum dataType, unsigned int size, void* data);
|
|
|
|
|
|
|
|
typedef Bool ( * PFNGLXMAKEASSOCIATEDCONTEXTCURRENTAMDPROC) (GLXContext ctx);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#define glXBlitContextFramebufferAMD GLXEW_GET_FUN(__glewXBlitContextFramebufferAMD)
|
|
|
|
|
|
|
|
#define glXCreateAssociatedContextAMD GLXEW_GET_FUN(__glewXCreateAssociatedContextAMD)
|
|
|
|
|
|
|
|
#define glXCreateAssociatedContextAttribsAMD GLXEW_GET_FUN(__glewXCreateAssociatedContextAttribsAMD)
|
|
|
|
|
|
|
|
#define glXDeleteAssociatedContextAMD GLXEW_GET_FUN(__glewXDeleteAssociatedContextAMD)
|
|
|
|
|
|
|
|
#define glXGetContextGPUIDAMD GLXEW_GET_FUN(__glewXGetContextGPUIDAMD)
|
|
|
|
|
|
|
|
#define glXGetCurrentAssociatedContextAMD GLXEW_GET_FUN(__glewXGetCurrentAssociatedContextAMD)
|
|
|
|
|
|
|
|
#define glXGetGPUIDsAMD GLXEW_GET_FUN(__glewXGetGPUIDsAMD)
|
|
|
|
|
|
|
|
#define glXGetGPUInfoAMD GLXEW_GET_FUN(__glewXGetGPUInfoAMD)
|
|
|
|
|
|
|
|
#define glXMakeAssociatedContextCurrentAMD GLXEW_GET_FUN(__glewXMakeAssociatedContextCurrentAMD)
|
|
|
|
|
|
|
|
|
|
|
|
#define GLXEW_AMD_gpu_association GLXEW_GET_VAR(__GLXEW_AMD_gpu_association)
|
|
|
|
#define GLXEW_AMD_gpu_association GLXEW_GET_VAR(__GLXEW_AMD_gpu_association)
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* GLX_AMD_gpu_association */
|
|
|
|
#endif /* GLX_AMD_gpu_association */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* --------------------- GLX_ARB_context_flush_control --------------------- */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef GLX_ARB_context_flush_control
|
|
|
|
|
|
|
|
#define GLX_ARB_context_flush_control 1
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#define GLXEW_ARB_context_flush_control GLXEW_GET_VAR(__GLXEW_ARB_context_flush_control)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* GLX_ARB_context_flush_control */
|
|
|
|
|
|
|
|
|
|
|
|
/* ------------------------- GLX_ARB_create_context ------------------------ */
|
|
|
|
/* ------------------------- GLX_ARB_create_context ------------------------ */
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef GLX_ARB_create_context
|
|
|
|
#ifndef GLX_ARB_create_context
|
|
|
@ -385,6 +415,15 @@ typedef GLXContext ( * PFNGLXCREATECONTEXTATTRIBSARBPROC) (Display* dpy, GLXFBCo
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* GLX_ARB_create_context */
|
|
|
|
#endif /* GLX_ARB_create_context */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* -------------------- GLX_ARB_create_context_no_error -------------------- */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef GLX_ARB_create_context_no_error
|
|
|
|
|
|
|
|
#define GLX_ARB_create_context_no_error 1
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#define GLXEW_ARB_create_context_no_error GLXEW_GET_VAR(__GLXEW_ARB_create_context_no_error)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* GLX_ARB_create_context_no_error */
|
|
|
|
|
|
|
|
|
|
|
|
/* --------------------- GLX_ARB_create_context_profile -------------------- */
|
|
|
|
/* --------------------- GLX_ARB_create_context_profile -------------------- */
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef GLX_ARB_create_context_profile
|
|
|
|
#ifndef GLX_ARB_create_context_profile
|
|
|
@ -417,8 +456,8 @@ typedef GLXContext ( * PFNGLXCREATECONTEXTATTRIBSARBPROC) (Display* dpy, GLXFBCo
|
|
|
|
#ifndef GLX_ARB_fbconfig_float
|
|
|
|
#ifndef GLX_ARB_fbconfig_float
|
|
|
|
#define GLX_ARB_fbconfig_float 1
|
|
|
|
#define GLX_ARB_fbconfig_float 1
|
|
|
|
|
|
|
|
|
|
|
|
#define GLX_RGBA_FLOAT_BIT 0x00000004
|
|
|
|
#define GLX_RGBA_FLOAT_BIT_ARB 0x00000004
|
|
|
|
#define GLX_RGBA_FLOAT_TYPE 0x20B9
|
|
|
|
#define GLX_RGBA_FLOAT_TYPE_ARB 0x20B9
|
|
|
|
|
|
|
|
|
|
|
|
#define GLXEW_ARB_fbconfig_float GLXEW_GET_VAR(__GLXEW_ARB_fbconfig_float)
|
|
|
|
#define GLXEW_ARB_fbconfig_float GLXEW_GET_VAR(__GLXEW_ARB_fbconfig_float)
|
|
|
|
|
|
|
|
|
|
|
@ -458,6 +497,28 @@ extern void ( * glXGetProcAddressARB (const GLubyte *procName)) (void);
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* GLX_ARB_multisample */
|
|
|
|
#endif /* GLX_ARB_multisample */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* ---------------- GLX_ARB_robustness_application_isolation --------------- */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef GLX_ARB_robustness_application_isolation
|
|
|
|
|
|
|
|
#define GLX_ARB_robustness_application_isolation 1
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#define GLX_CONTEXT_RESET_ISOLATION_BIT_ARB 0x00000008
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#define GLXEW_ARB_robustness_application_isolation GLXEW_GET_VAR(__GLXEW_ARB_robustness_application_isolation)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* GLX_ARB_robustness_application_isolation */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* ---------------- GLX_ARB_robustness_share_group_isolation --------------- */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef GLX_ARB_robustness_share_group_isolation
|
|
|
|
|
|
|
|
#define GLX_ARB_robustness_share_group_isolation 1
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#define GLX_CONTEXT_RESET_ISOLATION_BIT_ARB 0x00000008
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#define GLXEW_ARB_robustness_share_group_isolation GLXEW_GET_VAR(__GLXEW_ARB_robustness_share_group_isolation)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* GLX_ARB_robustness_share_group_isolation */
|
|
|
|
|
|
|
|
|
|
|
|
/* ---------------------- GLX_ARB_vertex_buffer_object --------------------- */
|
|
|
|
/* ---------------------- GLX_ARB_vertex_buffer_object --------------------- */
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef GLX_ARB_vertex_buffer_object
|
|
|
|
#ifndef GLX_ARB_vertex_buffer_object
|
|
|
@ -533,6 +594,17 @@ typedef void ( * PFNGLXRELEASETEXIMAGEATIPROC) (Display *dpy, GLXPbuffer pbuf, i
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* GLX_ATI_render_texture */
|
|
|
|
#endif /* GLX_ATI_render_texture */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* --------------------------- GLX_EXT_buffer_age -------------------------- */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef GLX_EXT_buffer_age
|
|
|
|
|
|
|
|
#define GLX_EXT_buffer_age 1
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#define GLX_BACK_BUFFER_AGE_EXT 0x20F4
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#define GLXEW_EXT_buffer_age GLXEW_GET_VAR(__GLXEW_EXT_buffer_age)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* GLX_EXT_buffer_age */
|
|
|
|
|
|
|
|
|
|
|
|
/* ------------------- GLX_EXT_create_context_es2_profile ------------------ */
|
|
|
|
/* ------------------- GLX_EXT_create_context_es2_profile ------------------ */
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef GLX_EXT_create_context_es2_profile
|
|
|
|
#ifndef GLX_EXT_create_context_es2_profile
|
|
|
@ -544,6 +616,17 @@ typedef void ( * PFNGLXRELEASETEXIMAGEATIPROC) (Display *dpy, GLXPbuffer pbuf, i
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* GLX_EXT_create_context_es2_profile */
|
|
|
|
#endif /* GLX_EXT_create_context_es2_profile */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* ------------------- GLX_EXT_create_context_es_profile ------------------- */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef GLX_EXT_create_context_es_profile
|
|
|
|
|
|
|
|
#define GLX_EXT_create_context_es_profile 1
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#define GLX_CONTEXT_ES_PROFILE_BIT_EXT 0x00000004
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#define GLXEW_EXT_create_context_es_profile GLXEW_GET_VAR(__GLXEW_EXT_create_context_es_profile)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* GLX_EXT_create_context_es_profile */
|
|
|
|
|
|
|
|
|
|
|
|
/* --------------------- GLX_EXT_fbconfig_packed_float --------------------- */
|
|
|
|
/* --------------------- GLX_EXT_fbconfig_packed_float --------------------- */
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef GLX_EXT_fbconfig_packed_float
|
|
|
|
#ifndef GLX_EXT_fbconfig_packed_float
|
|
|
@ -592,6 +675,17 @@ typedef int ( * PFNGLXQUERYCONTEXTINFOEXTPROC) (Display* dpy, GLXContext context
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* GLX_EXT_import_context */
|
|
|
|
#endif /* GLX_EXT_import_context */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* ---------------------------- GLX_EXT_libglvnd --------------------------- */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef GLX_EXT_libglvnd
|
|
|
|
|
|
|
|
#define GLX_EXT_libglvnd 1
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#define GLX_VENDOR_NAMES_EXT 0x20F6
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#define GLXEW_EXT_libglvnd GLXEW_GET_VAR(__GLXEW_EXT_libglvnd)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* GLX_EXT_libglvnd */
|
|
|
|
|
|
|
|
|
|
|
|
/* -------------------------- GLX_EXT_scene_marker ------------------------- */
|
|
|
|
/* -------------------------- GLX_EXT_scene_marker ------------------------- */
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef GLX_EXT_scene_marker
|
|
|
|
#ifndef GLX_EXT_scene_marker
|
|
|
@ -601,6 +695,19 @@ typedef int ( * PFNGLXQUERYCONTEXTINFOEXTPROC) (Display* dpy, GLXContext context
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* GLX_EXT_scene_marker */
|
|
|
|
#endif /* GLX_EXT_scene_marker */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* -------------------------- GLX_EXT_stereo_tree -------------------------- */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef GLX_EXT_stereo_tree
|
|
|
|
|
|
|
|
#define GLX_EXT_stereo_tree 1
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#define GLX_STEREO_NOTIFY_EXT 0x00000000
|
|
|
|
|
|
|
|
#define GLX_STEREO_NOTIFY_MASK_EXT 0x00000001
|
|
|
|
|
|
|
|
#define GLX_STEREO_TREE_EXT 0x20F5
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#define GLXEW_EXT_stereo_tree GLXEW_GET_VAR(__GLXEW_EXT_stereo_tree)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* GLX_EXT_stereo_tree */
|
|
|
|
|
|
|
|
|
|
|
|
/* -------------------------- GLX_EXT_swap_control ------------------------- */
|
|
|
|
/* -------------------------- GLX_EXT_swap_control ------------------------- */
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef GLX_EXT_swap_control
|
|
|
|
#ifndef GLX_EXT_swap_control
|
|
|
@ -617,6 +724,17 @@ typedef void ( * PFNGLXSWAPINTERVALEXTPROC) (Display* dpy, GLXDrawable drawable,
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* GLX_EXT_swap_control */
|
|
|
|
#endif /* GLX_EXT_swap_control */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* ----------------------- GLX_EXT_swap_control_tear ----------------------- */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef GLX_EXT_swap_control_tear
|
|
|
|
|
|
|
|
#define GLX_EXT_swap_control_tear 1
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#define GLX_LATE_SWAPS_TEAR_EXT 0x20F3
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#define GLXEW_EXT_swap_control_tear GLXEW_GET_VAR(__GLXEW_EXT_swap_control_tear)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* GLX_EXT_swap_control_tear */
|
|
|
|
|
|
|
|
|
|
|
|
/* ---------------------- GLX_EXT_texture_from_pixmap ---------------------- */
|
|
|
|
/* ---------------------- GLX_EXT_texture_from_pixmap ---------------------- */
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef GLX_EXT_texture_from_pixmap
|
|
|
|
#ifndef GLX_EXT_texture_from_pixmap
|
|
|
@ -756,6 +874,38 @@ typedef GLXPixmap ( * PFNGLXCREATEGLXPIXMAPMESAPROC) (Display* dpy, XVisualInfo
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* GLX_MESA_pixmap_colormap */
|
|
|
|
#endif /* GLX_MESA_pixmap_colormap */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* ------------------------ GLX_MESA_query_renderer ------------------------ */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef GLX_MESA_query_renderer
|
|
|
|
|
|
|
|
#define GLX_MESA_query_renderer 1
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#define GLX_RENDERER_VENDOR_ID_MESA 0x8183
|
|
|
|
|
|
|
|
#define GLX_RENDERER_DEVICE_ID_MESA 0x8184
|
|
|
|
|
|
|
|
#define GLX_RENDERER_VERSION_MESA 0x8185
|
|
|
|
|
|
|
|
#define GLX_RENDERER_ACCELERATED_MESA 0x8186
|
|
|
|
|
|
|
|
#define GLX_RENDERER_VIDEO_MEMORY_MESA 0x8187
|
|
|
|
|
|
|
|
#define GLX_RENDERER_UNIFIED_MEMORY_ARCHITECTURE_MESA 0x8188
|
|
|
|
|
|
|
|
#define GLX_RENDERER_PREFERRED_PROFILE_MESA 0x8189
|
|
|
|
|
|
|
|
#define GLX_RENDERER_OPENGL_CORE_PROFILE_VERSION_MESA 0x818A
|
|
|
|
|
|
|
|
#define GLX_RENDERER_OPENGL_COMPATIBILITY_PROFILE_VERSION_MESA 0x818B
|
|
|
|
|
|
|
|
#define GLX_RENDERER_OPENGL_ES_PROFILE_VERSION_MESA 0x818C
|
|
|
|
|
|
|
|
#define GLX_RENDERER_OPENGL_ES2_PROFILE_VERSION_MESA 0x818D
|
|
|
|
|
|
|
|
#define GLX_RENDERER_ID_MESA 0x818E
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
typedef Bool ( * PFNGLXQUERYCURRENTRENDERERINTEGERMESAPROC) (int attribute, unsigned int* value);
|
|
|
|
|
|
|
|
typedef const char* ( * PFNGLXQUERYCURRENTRENDERERSTRINGMESAPROC) (int attribute);
|
|
|
|
|
|
|
|
typedef Bool ( * PFNGLXQUERYRENDERERINTEGERMESAPROC) (Display* dpy, int screen, int renderer, int attribute, unsigned int *value);
|
|
|
|
|
|
|
|
typedef const char* ( * PFNGLXQUERYRENDERERSTRINGMESAPROC) (Display *dpy, int screen, int renderer, int attribute);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#define glXQueryCurrentRendererIntegerMESA GLXEW_GET_FUN(__glewXQueryCurrentRendererIntegerMESA)
|
|
|
|
|
|
|
|
#define glXQueryCurrentRendererStringMESA GLXEW_GET_FUN(__glewXQueryCurrentRendererStringMESA)
|
|
|
|
|
|
|
|
#define glXQueryRendererIntegerMESA GLXEW_GET_FUN(__glewXQueryRendererIntegerMESA)
|
|
|
|
|
|
|
|
#define glXQueryRendererStringMESA GLXEW_GET_FUN(__glewXQueryRendererStringMESA)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#define GLXEW_MESA_query_renderer GLXEW_GET_VAR(__GLXEW_MESA_query_renderer)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* GLX_MESA_query_renderer */
|
|
|
|
|
|
|
|
|
|
|
|
/* ------------------------ GLX_MESA_release_buffers ----------------------- */
|
|
|
|
/* ------------------------ GLX_MESA_release_buffers ----------------------- */
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef GLX_MESA_release_buffers
|
|
|
|
#ifndef GLX_MESA_release_buffers
|
|
|
@ -785,6 +935,36 @@ typedef GLboolean ( * PFNGLXSET3DFXMODEMESAPROC) (GLint mode);
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* GLX_MESA_set_3dfx_mode */
|
|
|
|
#endif /* GLX_MESA_set_3dfx_mode */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* ------------------------- GLX_MESA_swap_control ------------------------- */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef GLX_MESA_swap_control
|
|
|
|
|
|
|
|
#define GLX_MESA_swap_control 1
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
typedef int ( * PFNGLXGETSWAPINTERVALMESAPROC) (void);
|
|
|
|
|
|
|
|
typedef int ( * PFNGLXSWAPINTERVALMESAPROC) (unsigned int interval);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#define glXGetSwapIntervalMESA GLXEW_GET_FUN(__glewXGetSwapIntervalMESA)
|
|
|
|
|
|
|
|
#define glXSwapIntervalMESA GLXEW_GET_FUN(__glewXSwapIntervalMESA)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#define GLXEW_MESA_swap_control GLXEW_GET_VAR(__GLXEW_MESA_swap_control)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* GLX_MESA_swap_control */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* --------------------------- GLX_NV_copy_buffer -------------------------- */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef GLX_NV_copy_buffer
|
|
|
|
|
|
|
|
#define GLX_NV_copy_buffer 1
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
typedef void ( * PFNGLXCOPYBUFFERSUBDATANVPROC) (Display* dpy, GLXContext readCtx, GLXContext writeCtx, GLenum readTarget, GLenum writeTarget, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size);
|
|
|
|
|
|
|
|
typedef void ( * PFNGLXNAMEDCOPYBUFFERSUBDATANVPROC) (Display* dpy, GLXContext readCtx, GLXContext writeCtx, GLuint readBuffer, GLuint writeBuffer, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#define glXCopyBufferSubDataNV GLXEW_GET_FUN(__glewXCopyBufferSubDataNV)
|
|
|
|
|
|
|
|
#define glXNamedCopyBufferSubDataNV GLXEW_GET_FUN(__glewXNamedCopyBufferSubDataNV)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#define GLXEW_NV_copy_buffer GLXEW_GET_VAR(__GLXEW_NV_copy_buffer)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* GLX_NV_copy_buffer */
|
|
|
|
|
|
|
|
|
|
|
|
/* --------------------------- GLX_NV_copy_image --------------------------- */
|
|
|
|
/* --------------------------- GLX_NV_copy_image --------------------------- */
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef GLX_NV_copy_image
|
|
|
|
#ifndef GLX_NV_copy_image
|
|
|
@ -798,6 +978,19 @@ typedef void ( * PFNGLXCOPYIMAGESUBDATANVPROC) (Display *dpy, GLXContext srcCtx,
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* GLX_NV_copy_image */
|
|
|
|
#endif /* GLX_NV_copy_image */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* ------------------------ GLX_NV_delay_before_swap ----------------------- */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef GLX_NV_delay_before_swap
|
|
|
|
|
|
|
|
#define GLX_NV_delay_before_swap 1
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
typedef Bool ( * PFNGLXDELAYBEFORESWAPNVPROC) (Display* dpy, GLXDrawable drawable, GLfloat seconds);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#define glXDelayBeforeSwapNV GLXEW_GET_FUN(__glewXDelayBeforeSwapNV)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#define GLXEW_NV_delay_before_swap GLXEW_GET_VAR(__GLXEW_NV_delay_before_swap)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* GLX_NV_delay_before_swap */
|
|
|
|
|
|
|
|
|
|
|
|
/* -------------------------- GLX_NV_float_buffer -------------------------- */
|
|
|
|
/* -------------------------- GLX_NV_float_buffer -------------------------- */
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef GLX_NV_float_buffer
|
|
|
|
#ifndef GLX_NV_float_buffer
|
|
|
@ -838,6 +1031,17 @@ typedef unsigned int* ( * PFNGLXENUMERATEVIDEODEVICESNVPROC) (Display *dpy, int
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* GLX_NV_present_video */
|
|
|
|
#endif /* GLX_NV_present_video */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* ------------------ GLX_NV_robustness_video_memory_purge ----------------- */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef GLX_NV_robustness_video_memory_purge
|
|
|
|
|
|
|
|
#define GLX_NV_robustness_video_memory_purge 1
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#define GLX_GENERATE_RESET_ON_VIDEO_MEMORY_PURGE_NV 0x20F7
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#define GLXEW_NV_robustness_video_memory_purge GLXEW_GET_VAR(__GLXEW_NV_robustness_video_memory_purge)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* GLX_NV_robustness_video_memory_purge */
|
|
|
|
|
|
|
|
|
|
|
|
/* --------------------------- GLX_NV_swap_group --------------------------- */
|
|
|
|
/* --------------------------- GLX_NV_swap_group --------------------------- */
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef GLX_NV_swap_group
|
|
|
|
#ifndef GLX_NV_swap_group
|
|
|
@ -876,10 +1080,37 @@ typedef void ( * PFNGLXFREEMEMORYNVPROC) (void *pointer);
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* GLX_NV_vertex_array_range */
|
|
|
|
#endif /* GLX_NV_vertex_array_range */
|
|
|
|
|
|
|
|
|
|
|
|
/* -------------------------- GLX_NV_video_output -------------------------- */
|
|
|
|
/* -------------------------- GLX_NV_video_capture ------------------------- */
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef GLX_NV_video_output
|
|
|
|
#ifndef GLX_NV_video_capture
|
|
|
|
#define GLX_NV_video_output 1
|
|
|
|
#define GLX_NV_video_capture 1
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#define GLX_DEVICE_ID_NV 0x20CD
|
|
|
|
|
|
|
|
#define GLX_UNIQUE_ID_NV 0x20CE
|
|
|
|
|
|
|
|
#define GLX_NUM_VIDEO_CAPTURE_SLOTS_NV 0x20CF
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
typedef XID GLXVideoCaptureDeviceNV;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
typedef int ( * PFNGLXBINDVIDEOCAPTUREDEVICENVPROC) (Display* dpy, unsigned int video_capture_slot, GLXVideoCaptureDeviceNV device);
|
|
|
|
|
|
|
|
typedef GLXVideoCaptureDeviceNV * ( * PFNGLXENUMERATEVIDEOCAPTUREDEVICESNVPROC) (Display* dpy, int screen, int *nelements);
|
|
|
|
|
|
|
|
typedef void ( * PFNGLXLOCKVIDEOCAPTUREDEVICENVPROC) (Display* dpy, GLXVideoCaptureDeviceNV device);
|
|
|
|
|
|
|
|
typedef int ( * PFNGLXQUERYVIDEOCAPTUREDEVICENVPROC) (Display* dpy, GLXVideoCaptureDeviceNV device, int attribute, int *value);
|
|
|
|
|
|
|
|
typedef void ( * PFNGLXRELEASEVIDEOCAPTUREDEVICENVPROC) (Display* dpy, GLXVideoCaptureDeviceNV device);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#define glXBindVideoCaptureDeviceNV GLXEW_GET_FUN(__glewXBindVideoCaptureDeviceNV)
|
|
|
|
|
|
|
|
#define glXEnumerateVideoCaptureDevicesNV GLXEW_GET_FUN(__glewXEnumerateVideoCaptureDevicesNV)
|
|
|
|
|
|
|
|
#define glXLockVideoCaptureDeviceNV GLXEW_GET_FUN(__glewXLockVideoCaptureDeviceNV)
|
|
|
|
|
|
|
|
#define glXQueryVideoCaptureDeviceNV GLXEW_GET_FUN(__glewXQueryVideoCaptureDeviceNV)
|
|
|
|
|
|
|
|
#define glXReleaseVideoCaptureDeviceNV GLXEW_GET_FUN(__glewXReleaseVideoCaptureDeviceNV)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#define GLXEW_NV_video_capture GLXEW_GET_VAR(__GLXEW_NV_video_capture)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* GLX_NV_video_capture */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* ---------------------------- GLX_NV_video_out --------------------------- */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef GLX_NV_video_out
|
|
|
|
|
|
|
|
#define GLX_NV_video_out 1
|
|
|
|
|
|
|
|
|
|
|
|
#define GLX_VIDEO_OUT_COLOR_NV 0x20C3
|
|
|
|
#define GLX_VIDEO_OUT_COLOR_NV 0x20C3
|
|
|
|
#define GLX_VIDEO_OUT_ALPHA_NV 0x20C4
|
|
|
|
#define GLX_VIDEO_OUT_ALPHA_NV 0x20C4
|
|
|
@ -906,9 +1137,9 @@ typedef int ( * PFNGLXSENDPBUFFERTOVIDEONVPROC) (Display* dpy, GLXPbuffer pbuf,
|
|
|
|
#define glXReleaseVideoImageNV GLXEW_GET_FUN(__glewXReleaseVideoImageNV)
|
|
|
|
#define glXReleaseVideoImageNV GLXEW_GET_FUN(__glewXReleaseVideoImageNV)
|
|
|
|
#define glXSendPbufferToVideoNV GLXEW_GET_FUN(__glewXSendPbufferToVideoNV)
|
|
|
|
#define glXSendPbufferToVideoNV GLXEW_GET_FUN(__glewXSendPbufferToVideoNV)
|
|
|
|
|
|
|
|
|
|
|
|
#define GLXEW_NV_video_output GLXEW_GET_VAR(__GLXEW_NV_video_output)
|
|
|
|
#define GLXEW_NV_video_out GLXEW_GET_VAR(__GLXEW_NV_video_out)
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* GLX_NV_video_output */
|
|
|
|
#endif /* GLX_NV_video_out */
|
|
|
|
|
|
|
|
|
|
|
|
/* -------------------------- GLX_OML_swap_method -------------------------- */
|
|
|
|
/* -------------------------- GLX_OML_swap_method -------------------------- */
|
|
|
|
|
|
|
|
|
|
|
@ -926,8 +1157,7 @@ typedef int ( * PFNGLXSENDPBUFFERTOVIDEONVPROC) (Display* dpy, GLXPbuffer pbuf,
|
|
|
|
|
|
|
|
|
|
|
|
/* -------------------------- GLX_OML_sync_control ------------------------- */
|
|
|
|
/* -------------------------- GLX_OML_sync_control ------------------------- */
|
|
|
|
|
|
|
|
|
|
|
|
#if !defined(GLX_OML_sync_control) && defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L)
|
|
|
|
#ifndef GLX_OML_sync_control
|
|
|
|
#include <inttypes.h>
|
|
|
|
|
|
|
|
#define GLX_OML_sync_control 1
|
|
|
|
#define GLX_OML_sync_control 1
|
|
|
|
|
|
|
|
|
|
|
|
typedef Bool ( * PFNGLXGETMSCRATEOMLPROC) (Display* dpy, GLXDrawable drawable, int32_t* numerator, int32_t* denominator);
|
|
|
|
typedef Bool ( * PFNGLXGETMSCRATEOMLPROC) (Display* dpy, GLXDrawable drawable, int32_t* numerator, int32_t* denominator);
|
|
|
@ -962,16 +1192,6 @@ typedef Bool ( * PFNGLXWAITFORSBCOMLPROC) (Display* dpy, GLXDrawable drawable, i
|
|
|
|
#ifndef GLX_SGIS_color_range
|
|
|
|
#ifndef GLX_SGIS_color_range
|
|
|
|
#define GLX_SGIS_color_range 1
|
|
|
|
#define GLX_SGIS_color_range 1
|
|
|
|
|
|
|
|
|
|
|
|
#define GLX_MIN_RED_SGIS 0
|
|
|
|
|
|
|
|
#define GLX_MAX_GREEN_SGIS 0
|
|
|
|
|
|
|
|
#define GLX_MIN_BLUE_SGIS 0
|
|
|
|
|
|
|
|
#define GLX_MAX_ALPHA_SGIS 0
|
|
|
|
|
|
|
|
#define GLX_MIN_GREEN_SGIS 0
|
|
|
|
|
|
|
|
#define GLX_MIN_ALPHA_SGIS 0
|
|
|
|
|
|
|
|
#define GLX_MAX_RED_SGIS 0
|
|
|
|
|
|
|
|
#define GLX_EXTENDED_RANGE_SGIS 0
|
|
|
|
|
|
|
|
#define GLX_MAX_BLUE_SGIS 0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#define GLXEW_SGIS_color_range GLXEW_GET_VAR(__GLXEW_SGIS_color_range)
|
|
|
|
#define GLXEW_SGIS_color_range GLXEW_GET_VAR(__GLXEW_SGIS_color_range)
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* GLX_SGIS_color_range */
|
|
|
|
#endif /* GLX_SGIS_color_range */
|
|
|
@ -1005,10 +1225,10 @@ typedef Bool ( * PFNGLXWAITFORSBCOMLPROC) (Display* dpy, GLXDrawable drawable, i
|
|
|
|
#ifndef GLX_SGIX_fbconfig
|
|
|
|
#ifndef GLX_SGIX_fbconfig
|
|
|
|
#define GLX_SGIX_fbconfig 1
|
|
|
|
#define GLX_SGIX_fbconfig 1
|
|
|
|
|
|
|
|
|
|
|
|
#define GLX_WINDOW_BIT_SGIX 0x00000001
|
|
|
|
|
|
|
|
#define GLX_RGBA_BIT_SGIX 0x00000001
|
|
|
|
#define GLX_RGBA_BIT_SGIX 0x00000001
|
|
|
|
#define GLX_PIXMAP_BIT_SGIX 0x00000002
|
|
|
|
#define GLX_WINDOW_BIT_SGIX 0x00000001
|
|
|
|
#define GLX_COLOR_INDEX_BIT_SGIX 0x00000002
|
|
|
|
#define GLX_COLOR_INDEX_BIT_SGIX 0x00000002
|
|
|
|
|
|
|
|
#define GLX_PIXMAP_BIT_SGIX 0x00000002
|
|
|
|
#define GLX_SCREEN_EXT 0x800C
|
|
|
|
#define GLX_SCREEN_EXT 0x800C
|
|
|
|
#define GLX_DRAWABLE_TYPE_SGIX 0x8010
|
|
|
|
#define GLX_DRAWABLE_TYPE_SGIX 0x8010
|
|
|
|
#define GLX_RENDER_TYPE_SGIX 0x8011
|
|
|
|
#define GLX_RENDER_TYPE_SGIX 0x8011
|
|
|
@ -1045,8 +1265,8 @@ typedef XVisualInfo* ( * PFNGLXGETVISUALFROMFBCONFIGSGIXPROC) (Display *dpy, GLX
|
|
|
|
|
|
|
|
|
|
|
|
#define GLX_HYPERPIPE_DISPLAY_PIPE_SGIX 0x00000001
|
|
|
|
#define GLX_HYPERPIPE_DISPLAY_PIPE_SGIX 0x00000001
|
|
|
|
#define GLX_PIPE_RECT_SGIX 0x00000001
|
|
|
|
#define GLX_PIPE_RECT_SGIX 0x00000001
|
|
|
|
#define GLX_PIPE_RECT_LIMITS_SGIX 0x00000002
|
|
|
|
|
|
|
|
#define GLX_HYPERPIPE_RENDER_PIPE_SGIX 0x00000002
|
|
|
|
#define GLX_HYPERPIPE_RENDER_PIPE_SGIX 0x00000002
|
|
|
|
|
|
|
|
#define GLX_PIPE_RECT_LIMITS_SGIX 0x00000002
|
|
|
|
#define GLX_HYPERPIPE_STEREO_SGIX 0x00000003
|
|
|
|
#define GLX_HYPERPIPE_STEREO_SGIX 0x00000003
|
|
|
|
#define GLX_HYPERPIPE_PIXEL_AVERAGE_SGIX 0x00000004
|
|
|
|
#define GLX_HYPERPIPE_PIXEL_AVERAGE_SGIX 0x00000004
|
|
|
|
#define GLX_HYPERPIPE_PIPE_NAME_LENGTH_SGIX 80
|
|
|
|
#define GLX_HYPERPIPE_PIPE_NAME_LENGTH_SGIX 80
|
|
|
@ -1112,8 +1332,8 @@ typedef GLXHyperpipeNetworkSGIX * ( * PFNGLXQUERYHYPERPIPENETWORKSGIXPROC) (Disp
|
|
|
|
|
|
|
|
|
|
|
|
#define GLX_FRONT_LEFT_BUFFER_BIT_SGIX 0x00000001
|
|
|
|
#define GLX_FRONT_LEFT_BUFFER_BIT_SGIX 0x00000001
|
|
|
|
#define GLX_FRONT_RIGHT_BUFFER_BIT_SGIX 0x00000002
|
|
|
|
#define GLX_FRONT_RIGHT_BUFFER_BIT_SGIX 0x00000002
|
|
|
|
#define GLX_PBUFFER_BIT_SGIX 0x00000004
|
|
|
|
|
|
|
|
#define GLX_BACK_LEFT_BUFFER_BIT_SGIX 0x00000004
|
|
|
|
#define GLX_BACK_LEFT_BUFFER_BIT_SGIX 0x00000004
|
|
|
|
|
|
|
|
#define GLX_PBUFFER_BIT_SGIX 0x00000004
|
|
|
|
#define GLX_BACK_RIGHT_BUFFER_BIT_SGIX 0x00000008
|
|
|
|
#define GLX_BACK_RIGHT_BUFFER_BIT_SGIX 0x00000008
|
|
|
|
#define GLX_AUX_BUFFERS_BIT_SGIX 0x00000010
|
|
|
|
#define GLX_AUX_BUFFERS_BIT_SGIX 0x00000010
|
|
|
|
#define GLX_DEPTH_BUFFER_BIT_SGIX 0x00000020
|
|
|
|
#define GLX_DEPTH_BUFFER_BIT_SGIX 0x00000020
|
|
|
@ -1307,228 +1527,246 @@ typedef int ( * PFNGLXVIDEORESIZESUNPROC) (Display* display, GLXDrawable window,
|
|
|
|
|
|
|
|
|
|
|
|
/* ------------------------------------------------------------------------- */
|
|
|
|
/* ------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef GLEW_MX
|
|
|
|
#define GLXEW_FUN_EXPORT GLEW_FUN_EXPORT
|
|
|
|
#define GLXEW_EXPORT
|
|
|
|
#define GLXEW_VAR_EXPORT GLEW_VAR_EXPORT
|
|
|
|
#else
|
|
|
|
|
|
|
|
#define GLXEW_EXPORT extern
|
|
|
|
|
|
|
|
#endif /* GLEW_MX */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
extern PFNGLXGETCURRENTDISPLAYPROC __glewXGetCurrentDisplay;
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXGETCURRENTDISPLAYPROC __glewXGetCurrentDisplay;
|
|
|
|
|
|
|
|
|
|
|
|
extern PFNGLXCHOOSEFBCONFIGPROC __glewXChooseFBConfig;
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXCHOOSEFBCONFIGPROC __glewXChooseFBConfig;
|
|
|
|
extern PFNGLXCREATENEWCONTEXTPROC __glewXCreateNewContext;
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXCREATENEWCONTEXTPROC __glewXCreateNewContext;
|
|
|
|
extern PFNGLXCREATEPBUFFERPROC __glewXCreatePbuffer;
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXCREATEPBUFFERPROC __glewXCreatePbuffer;
|
|
|
|
extern PFNGLXCREATEPIXMAPPROC __glewXCreatePixmap;
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXCREATEPIXMAPPROC __glewXCreatePixmap;
|
|
|
|
extern PFNGLXCREATEWINDOWPROC __glewXCreateWindow;
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXCREATEWINDOWPROC __glewXCreateWindow;
|
|
|
|
extern PFNGLXDESTROYPBUFFERPROC __glewXDestroyPbuffer;
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXDESTROYPBUFFERPROC __glewXDestroyPbuffer;
|
|
|
|
extern PFNGLXDESTROYPIXMAPPROC __glewXDestroyPixmap;
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXDESTROYPIXMAPPROC __glewXDestroyPixmap;
|
|
|
|
extern PFNGLXDESTROYWINDOWPROC __glewXDestroyWindow;
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXDESTROYWINDOWPROC __glewXDestroyWindow;
|
|
|
|
extern PFNGLXGETCURRENTREADDRAWABLEPROC __glewXGetCurrentReadDrawable;
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXGETCURRENTREADDRAWABLEPROC __glewXGetCurrentReadDrawable;
|
|
|
|
extern PFNGLXGETFBCONFIGATTRIBPROC __glewXGetFBConfigAttrib;
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXGETFBCONFIGATTRIBPROC __glewXGetFBConfigAttrib;
|
|
|
|
extern PFNGLXGETFBCONFIGSPROC __glewXGetFBConfigs;
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXGETFBCONFIGSPROC __glewXGetFBConfigs;
|
|
|
|
extern PFNGLXGETSELECTEDEVENTPROC __glewXGetSelectedEvent;
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXGETSELECTEDEVENTPROC __glewXGetSelectedEvent;
|
|
|
|
extern PFNGLXGETVISUALFROMFBCONFIGPROC __glewXGetVisualFromFBConfig;
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXGETVISUALFROMFBCONFIGPROC __glewXGetVisualFromFBConfig;
|
|
|
|
extern PFNGLXMAKECONTEXTCURRENTPROC __glewXMakeContextCurrent;
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXMAKECONTEXTCURRENTPROC __glewXMakeContextCurrent;
|
|
|
|
extern PFNGLXQUERYCONTEXTPROC __glewXQueryContext;
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXQUERYCONTEXTPROC __glewXQueryContext;
|
|
|
|
extern PFNGLXQUERYDRAWABLEPROC __glewXQueryDrawable;
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXQUERYDRAWABLEPROC __glewXQueryDrawable;
|
|
|
|
extern PFNGLXSELECTEVENTPROC __glewXSelectEvent;
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXSELECTEVENTPROC __glewXSelectEvent;
|
|
|
|
|
|
|
|
|
|
|
|
extern PFNGLXCREATECONTEXTATTRIBSARBPROC __glewXCreateContextAttribsARB;
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXBLITCONTEXTFRAMEBUFFERAMDPROC __glewXBlitContextFramebufferAMD;
|
|
|
|
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXCREATEASSOCIATEDCONTEXTAMDPROC __glewXCreateAssociatedContextAMD;
|
|
|
|
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXCREATEASSOCIATEDCONTEXTATTRIBSAMDPROC __glewXCreateAssociatedContextAttribsAMD;
|
|
|
|
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXDELETEASSOCIATEDCONTEXTAMDPROC __glewXDeleteAssociatedContextAMD;
|
|
|
|
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXGETCONTEXTGPUIDAMDPROC __glewXGetContextGPUIDAMD;
|
|
|
|
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXGETCURRENTASSOCIATEDCONTEXTAMDPROC __glewXGetCurrentAssociatedContextAMD;
|
|
|
|
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXGETGPUIDSAMDPROC __glewXGetGPUIDsAMD;
|
|
|
|
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXGETGPUINFOAMDPROC __glewXGetGPUInfoAMD;
|
|
|
|
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXMAKEASSOCIATEDCONTEXTCURRENTAMDPROC __glewXMakeAssociatedContextCurrentAMD;
|
|
|
|
|
|
|
|
|
|
|
|
extern PFNGLXBINDTEXIMAGEATIPROC __glewXBindTexImageATI;
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXCREATECONTEXTATTRIBSARBPROC __glewXCreateContextAttribsARB;
|
|
|
|
extern PFNGLXDRAWABLEATTRIBATIPROC __glewXDrawableAttribATI;
|
|
|
|
|
|
|
|
extern PFNGLXRELEASETEXIMAGEATIPROC __glewXReleaseTexImageATI;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
extern PFNGLXFREECONTEXTEXTPROC __glewXFreeContextEXT;
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXBINDTEXIMAGEATIPROC __glewXBindTexImageATI;
|
|
|
|
extern PFNGLXGETCONTEXTIDEXTPROC __glewXGetContextIDEXT;
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXDRAWABLEATTRIBATIPROC __glewXDrawableAttribATI;
|
|
|
|
extern PFNGLXIMPORTCONTEXTEXTPROC __glewXImportContextEXT;
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXRELEASETEXIMAGEATIPROC __glewXReleaseTexImageATI;
|
|
|
|
extern PFNGLXQUERYCONTEXTINFOEXTPROC __glewXQueryContextInfoEXT;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
extern PFNGLXSWAPINTERVALEXTPROC __glewXSwapIntervalEXT;
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXFREECONTEXTEXTPROC __glewXFreeContextEXT;
|
|
|
|
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXGETCONTEXTIDEXTPROC __glewXGetContextIDEXT;
|
|
|
|
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXIMPORTCONTEXTEXTPROC __glewXImportContextEXT;
|
|
|
|
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXQUERYCONTEXTINFOEXTPROC __glewXQueryContextInfoEXT;
|
|
|
|
|
|
|
|
|
|
|
|
extern PFNGLXBINDTEXIMAGEEXTPROC __glewXBindTexImageEXT;
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXSWAPINTERVALEXTPROC __glewXSwapIntervalEXT;
|
|
|
|
extern PFNGLXRELEASETEXIMAGEEXTPROC __glewXReleaseTexImageEXT;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
extern PFNGLXGETAGPOFFSETMESAPROC __glewXGetAGPOffsetMESA;
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXBINDTEXIMAGEEXTPROC __glewXBindTexImageEXT;
|
|
|
|
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXRELEASETEXIMAGEEXTPROC __glewXReleaseTexImageEXT;
|
|
|
|
|
|
|
|
|
|
|
|
extern PFNGLXCOPYSUBBUFFERMESAPROC __glewXCopySubBufferMESA;
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXGETAGPOFFSETMESAPROC __glewXGetAGPOffsetMESA;
|
|
|
|
|
|
|
|
|
|
|
|
extern PFNGLXCREATEGLXPIXMAPMESAPROC __glewXCreateGLXPixmapMESA;
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXCOPYSUBBUFFERMESAPROC __glewXCopySubBufferMESA;
|
|
|
|
|
|
|
|
|
|
|
|
extern PFNGLXRELEASEBUFFERSMESAPROC __glewXReleaseBuffersMESA;
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXCREATEGLXPIXMAPMESAPROC __glewXCreateGLXPixmapMESA;
|
|
|
|
|
|
|
|
|
|
|
|
extern PFNGLXSET3DFXMODEMESAPROC __glewXSet3DfxModeMESA;
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXQUERYCURRENTRENDERERINTEGERMESAPROC __glewXQueryCurrentRendererIntegerMESA;
|
|
|
|
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXQUERYCURRENTRENDERERSTRINGMESAPROC __glewXQueryCurrentRendererStringMESA;
|
|
|
|
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXQUERYRENDERERINTEGERMESAPROC __glewXQueryRendererIntegerMESA;
|
|
|
|
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXQUERYRENDERERSTRINGMESAPROC __glewXQueryRendererStringMESA;
|
|
|
|
|
|
|
|
|
|
|
|
extern PFNGLXCOPYIMAGESUBDATANVPROC __glewXCopyImageSubDataNV;
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXRELEASEBUFFERSMESAPROC __glewXReleaseBuffersMESA;
|
|
|
|
|
|
|
|
|
|
|
|
extern PFNGLXBINDVIDEODEVICENVPROC __glewXBindVideoDeviceNV;
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXSET3DFXMODEMESAPROC __glewXSet3DfxModeMESA;
|
|
|
|
extern PFNGLXENUMERATEVIDEODEVICESNVPROC __glewXEnumerateVideoDevicesNV;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
extern PFNGLXBINDSWAPBARRIERNVPROC __glewXBindSwapBarrierNV;
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXGETSWAPINTERVALMESAPROC __glewXGetSwapIntervalMESA;
|
|
|
|
extern PFNGLXJOINSWAPGROUPNVPROC __glewXJoinSwapGroupNV;
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXSWAPINTERVALMESAPROC __glewXSwapIntervalMESA;
|
|
|
|
extern PFNGLXQUERYFRAMECOUNTNVPROC __glewXQueryFrameCountNV;
|
|
|
|
|
|
|
|
extern PFNGLXQUERYMAXSWAPGROUPSNVPROC __glewXQueryMaxSwapGroupsNV;
|
|
|
|
|
|
|
|
extern PFNGLXQUERYSWAPGROUPNVPROC __glewXQuerySwapGroupNV;
|
|
|
|
|
|
|
|
extern PFNGLXRESETFRAMECOUNTNVPROC __glewXResetFrameCountNV;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
extern PFNGLXALLOCATEMEMORYNVPROC __glewXAllocateMemoryNV;
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXCOPYBUFFERSUBDATANVPROC __glewXCopyBufferSubDataNV;
|
|
|
|
extern PFNGLXFREEMEMORYNVPROC __glewXFreeMemoryNV;
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXNAMEDCOPYBUFFERSUBDATANVPROC __glewXNamedCopyBufferSubDataNV;
|
|
|
|
|
|
|
|
|
|
|
|
extern PFNGLXBINDVIDEOIMAGENVPROC __glewXBindVideoImageNV;
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXCOPYIMAGESUBDATANVPROC __glewXCopyImageSubDataNV;
|
|
|
|
extern PFNGLXGETVIDEODEVICENVPROC __glewXGetVideoDeviceNV;
|
|
|
|
|
|
|
|
extern PFNGLXGETVIDEOINFONVPROC __glewXGetVideoInfoNV;
|
|
|
|
|
|
|
|
extern PFNGLXRELEASEVIDEODEVICENVPROC __glewXReleaseVideoDeviceNV;
|
|
|
|
|
|
|
|
extern PFNGLXRELEASEVIDEOIMAGENVPROC __glewXReleaseVideoImageNV;
|
|
|
|
|
|
|
|
extern PFNGLXSENDPBUFFERTOVIDEONVPROC __glewXSendPbufferToVideoNV;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef GLX_OML_sync_control
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXDELAYBEFORESWAPNVPROC __glewXDelayBeforeSwapNV;
|
|
|
|
extern PFNGLXGETMSCRATEOMLPROC __glewXGetMscRateOML;
|
|
|
|
|
|
|
|
extern PFNGLXGETSYNCVALUESOMLPROC __glewXGetSyncValuesOML;
|
|
|
|
|
|
|
|
extern PFNGLXSWAPBUFFERSMSCOMLPROC __glewXSwapBuffersMscOML;
|
|
|
|
|
|
|
|
extern PFNGLXWAITFORMSCOMLPROC __glewXWaitForMscOML;
|
|
|
|
|
|
|
|
extern PFNGLXWAITFORSBCOMLPROC __glewXWaitForSbcOML;
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
extern PFNGLXCHOOSEFBCONFIGSGIXPROC __glewXChooseFBConfigSGIX;
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXBINDVIDEODEVICENVPROC __glewXBindVideoDeviceNV;
|
|
|
|
extern PFNGLXCREATECONTEXTWITHCONFIGSGIXPROC __glewXCreateContextWithConfigSGIX;
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXENUMERATEVIDEODEVICESNVPROC __glewXEnumerateVideoDevicesNV;
|
|
|
|
extern PFNGLXCREATEGLXPIXMAPWITHCONFIGSGIXPROC __glewXCreateGLXPixmapWithConfigSGIX;
|
|
|
|
|
|
|
|
extern PFNGLXGETFBCONFIGATTRIBSGIXPROC __glewXGetFBConfigAttribSGIX;
|
|
|
|
|
|
|
|
extern PFNGLXGETFBCONFIGFROMVISUALSGIXPROC __glewXGetFBConfigFromVisualSGIX;
|
|
|
|
|
|
|
|
extern PFNGLXGETVISUALFROMFBCONFIGSGIXPROC __glewXGetVisualFromFBConfigSGIX;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
extern PFNGLXBINDHYPERPIPESGIXPROC __glewXBindHyperpipeSGIX;
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXBINDSWAPBARRIERNVPROC __glewXBindSwapBarrierNV;
|
|
|
|
extern PFNGLXDESTROYHYPERPIPECONFIGSGIXPROC __glewXDestroyHyperpipeConfigSGIX;
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXJOINSWAPGROUPNVPROC __glewXJoinSwapGroupNV;
|
|
|
|
extern PFNGLXHYPERPIPEATTRIBSGIXPROC __glewXHyperpipeAttribSGIX;
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXQUERYFRAMECOUNTNVPROC __glewXQueryFrameCountNV;
|
|
|
|
extern PFNGLXHYPERPIPECONFIGSGIXPROC __glewXHyperpipeConfigSGIX;
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXQUERYMAXSWAPGROUPSNVPROC __glewXQueryMaxSwapGroupsNV;
|
|
|
|
extern PFNGLXQUERYHYPERPIPEATTRIBSGIXPROC __glewXQueryHyperpipeAttribSGIX;
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXQUERYSWAPGROUPNVPROC __glewXQuerySwapGroupNV;
|
|
|
|
extern PFNGLXQUERYHYPERPIPEBESTATTRIBSGIXPROC __glewXQueryHyperpipeBestAttribSGIX;
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXRESETFRAMECOUNTNVPROC __glewXResetFrameCountNV;
|
|
|
|
extern PFNGLXQUERYHYPERPIPECONFIGSGIXPROC __glewXQueryHyperpipeConfigSGIX;
|
|
|
|
|
|
|
|
extern PFNGLXQUERYHYPERPIPENETWORKSGIXPROC __glewXQueryHyperpipeNetworkSGIX;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
extern PFNGLXCREATEGLXPBUFFERSGIXPROC __glewXCreateGLXPbufferSGIX;
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXALLOCATEMEMORYNVPROC __glewXAllocateMemoryNV;
|
|
|
|
extern PFNGLXDESTROYGLXPBUFFERSGIXPROC __glewXDestroyGLXPbufferSGIX;
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXFREEMEMORYNVPROC __glewXFreeMemoryNV;
|
|
|
|
extern PFNGLXGETSELECTEDEVENTSGIXPROC __glewXGetSelectedEventSGIX;
|
|
|
|
|
|
|
|
extern PFNGLXQUERYGLXPBUFFERSGIXPROC __glewXQueryGLXPbufferSGIX;
|
|
|
|
|
|
|
|
extern PFNGLXSELECTEVENTSGIXPROC __glewXSelectEventSGIX;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
extern PFNGLXBINDSWAPBARRIERSGIXPROC __glewXBindSwapBarrierSGIX;
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXBINDVIDEOCAPTUREDEVICENVPROC __glewXBindVideoCaptureDeviceNV;
|
|
|
|
extern PFNGLXQUERYMAXSWAPBARRIERSSGIXPROC __glewXQueryMaxSwapBarriersSGIX;
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXENUMERATEVIDEOCAPTUREDEVICESNVPROC __glewXEnumerateVideoCaptureDevicesNV;
|
|
|
|
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXLOCKVIDEOCAPTUREDEVICENVPROC __glewXLockVideoCaptureDeviceNV;
|
|
|
|
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXQUERYVIDEOCAPTUREDEVICENVPROC __glewXQueryVideoCaptureDeviceNV;
|
|
|
|
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXRELEASEVIDEOCAPTUREDEVICENVPROC __glewXReleaseVideoCaptureDeviceNV;
|
|
|
|
|
|
|
|
|
|
|
|
extern PFNGLXJOINSWAPGROUPSGIXPROC __glewXJoinSwapGroupSGIX;
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXBINDVIDEOIMAGENVPROC __glewXBindVideoImageNV;
|
|
|
|
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXGETVIDEODEVICENVPROC __glewXGetVideoDeviceNV;
|
|
|
|
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXGETVIDEOINFONVPROC __glewXGetVideoInfoNV;
|
|
|
|
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXRELEASEVIDEODEVICENVPROC __glewXReleaseVideoDeviceNV;
|
|
|
|
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXRELEASEVIDEOIMAGENVPROC __glewXReleaseVideoImageNV;
|
|
|
|
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXSENDPBUFFERTOVIDEONVPROC __glewXSendPbufferToVideoNV;
|
|
|
|
|
|
|
|
|
|
|
|
extern PFNGLXBINDCHANNELTOWINDOWSGIXPROC __glewXBindChannelToWindowSGIX;
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXGETMSCRATEOMLPROC __glewXGetMscRateOML;
|
|
|
|
extern PFNGLXCHANNELRECTSGIXPROC __glewXChannelRectSGIX;
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXGETSYNCVALUESOMLPROC __glewXGetSyncValuesOML;
|
|
|
|
extern PFNGLXCHANNELRECTSYNCSGIXPROC __glewXChannelRectSyncSGIX;
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXSWAPBUFFERSMSCOMLPROC __glewXSwapBuffersMscOML;
|
|
|
|
extern PFNGLXQUERYCHANNELDELTASSGIXPROC __glewXQueryChannelDeltasSGIX;
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXWAITFORMSCOMLPROC __glewXWaitForMscOML;
|
|
|
|
extern PFNGLXQUERYCHANNELRECTSGIXPROC __glewXQueryChannelRectSGIX;
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXWAITFORSBCOMLPROC __glewXWaitForSbcOML;
|
|
|
|
|
|
|
|
|
|
|
|
extern PFNGLXCUSHIONSGIPROC __glewXCushionSGI;
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXCHOOSEFBCONFIGSGIXPROC __glewXChooseFBConfigSGIX;
|
|
|
|
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXCREATECONTEXTWITHCONFIGSGIXPROC __glewXCreateContextWithConfigSGIX;
|
|
|
|
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXCREATEGLXPIXMAPWITHCONFIGSGIXPROC __glewXCreateGLXPixmapWithConfigSGIX;
|
|
|
|
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXGETFBCONFIGATTRIBSGIXPROC __glewXGetFBConfigAttribSGIX;
|
|
|
|
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXGETFBCONFIGFROMVISUALSGIXPROC __glewXGetFBConfigFromVisualSGIX;
|
|
|
|
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXGETVISUALFROMFBCONFIGSGIXPROC __glewXGetVisualFromFBConfigSGIX;
|
|
|
|
|
|
|
|
|
|
|
|
extern PFNGLXGETCURRENTREADDRAWABLESGIPROC __glewXGetCurrentReadDrawableSGI;
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXBINDHYPERPIPESGIXPROC __glewXBindHyperpipeSGIX;
|
|
|
|
extern PFNGLXMAKECURRENTREADSGIPROC __glewXMakeCurrentReadSGI;
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXDESTROYHYPERPIPECONFIGSGIXPROC __glewXDestroyHyperpipeConfigSGIX;
|
|
|
|
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXHYPERPIPEATTRIBSGIXPROC __glewXHyperpipeAttribSGIX;
|
|
|
|
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXHYPERPIPECONFIGSGIXPROC __glewXHyperpipeConfigSGIX;
|
|
|
|
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXQUERYHYPERPIPEATTRIBSGIXPROC __glewXQueryHyperpipeAttribSGIX;
|
|
|
|
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXQUERYHYPERPIPEBESTATTRIBSGIXPROC __glewXQueryHyperpipeBestAttribSGIX;
|
|
|
|
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXQUERYHYPERPIPECONFIGSGIXPROC __glewXQueryHyperpipeConfigSGIX;
|
|
|
|
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXQUERYHYPERPIPENETWORKSGIXPROC __glewXQueryHyperpipeNetworkSGIX;
|
|
|
|
|
|
|
|
|
|
|
|
extern PFNGLXSWAPINTERVALSGIPROC __glewXSwapIntervalSGI;
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXCREATEGLXPBUFFERSGIXPROC __glewXCreateGLXPbufferSGIX;
|
|
|
|
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXDESTROYGLXPBUFFERSGIXPROC __glewXDestroyGLXPbufferSGIX;
|
|
|
|
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXGETSELECTEDEVENTSGIXPROC __glewXGetSelectedEventSGIX;
|
|
|
|
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXQUERYGLXPBUFFERSGIXPROC __glewXQueryGLXPbufferSGIX;
|
|
|
|
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXSELECTEVENTSGIXPROC __glewXSelectEventSGIX;
|
|
|
|
|
|
|
|
|
|
|
|
extern PFNGLXGETVIDEOSYNCSGIPROC __glewXGetVideoSyncSGI;
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXBINDSWAPBARRIERSGIXPROC __glewXBindSwapBarrierSGIX;
|
|
|
|
extern PFNGLXWAITVIDEOSYNCSGIPROC __glewXWaitVideoSyncSGI;
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXQUERYMAXSWAPBARRIERSSGIXPROC __glewXQueryMaxSwapBarriersSGIX;
|
|
|
|
|
|
|
|
|
|
|
|
extern PFNGLXGETTRANSPARENTINDEXSUNPROC __glewXGetTransparentIndexSUN;
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXJOINSWAPGROUPSGIXPROC __glewXJoinSwapGroupSGIX;
|
|
|
|
|
|
|
|
|
|
|
|
extern PFNGLXGETVIDEORESIZESUNPROC __glewXGetVideoResizeSUN;
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXBINDCHANNELTOWINDOWSGIXPROC __glewXBindChannelToWindowSGIX;
|
|
|
|
extern PFNGLXVIDEORESIZESUNPROC __glewXVideoResizeSUN;
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXCHANNELRECTSGIXPROC __glewXChannelRectSGIX;
|
|
|
|
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXCHANNELRECTSYNCSGIXPROC __glewXChannelRectSyncSGIX;
|
|
|
|
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXQUERYCHANNELDELTASSGIXPROC __glewXQueryChannelDeltasSGIX;
|
|
|
|
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXQUERYCHANNELRECTSGIXPROC __glewXQueryChannelRectSGIX;
|
|
|
|
|
|
|
|
|
|
|
|
#if defined(GLEW_MX)
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXCUSHIONSGIPROC __glewXCushionSGI;
|
|
|
|
struct GLXEWContextStruct
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
#endif /* GLEW_MX */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
GLXEW_EXPORT GLboolean __GLXEW_VERSION_1_0;
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXGETCURRENTREADDRAWABLESGIPROC __glewXGetCurrentReadDrawableSGI;
|
|
|
|
GLXEW_EXPORT GLboolean __GLXEW_VERSION_1_1;
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXMAKECURRENTREADSGIPROC __glewXMakeCurrentReadSGI;
|
|
|
|
GLXEW_EXPORT GLboolean __GLXEW_VERSION_1_2;
|
|
|
|
|
|
|
|
GLXEW_EXPORT GLboolean __GLXEW_VERSION_1_3;
|
|
|
|
|
|
|
|
GLXEW_EXPORT GLboolean __GLXEW_VERSION_1_4;
|
|
|
|
|
|
|
|
GLXEW_EXPORT GLboolean __GLXEW_3DFX_multisample;
|
|
|
|
|
|
|
|
GLXEW_EXPORT GLboolean __GLXEW_AMD_gpu_association;
|
|
|
|
|
|
|
|
GLXEW_EXPORT GLboolean __GLXEW_ARB_create_context;
|
|
|
|
|
|
|
|
GLXEW_EXPORT GLboolean __GLXEW_ARB_create_context_profile;
|
|
|
|
|
|
|
|
GLXEW_EXPORT GLboolean __GLXEW_ARB_create_context_robustness;
|
|
|
|
|
|
|
|
GLXEW_EXPORT GLboolean __GLXEW_ARB_fbconfig_float;
|
|
|
|
|
|
|
|
GLXEW_EXPORT GLboolean __GLXEW_ARB_framebuffer_sRGB;
|
|
|
|
|
|
|
|
GLXEW_EXPORT GLboolean __GLXEW_ARB_get_proc_address;
|
|
|
|
|
|
|
|
GLXEW_EXPORT GLboolean __GLXEW_ARB_multisample;
|
|
|
|
|
|
|
|
GLXEW_EXPORT GLboolean __GLXEW_ARB_vertex_buffer_object;
|
|
|
|
|
|
|
|
GLXEW_EXPORT GLboolean __GLXEW_ATI_pixel_format_float;
|
|
|
|
|
|
|
|
GLXEW_EXPORT GLboolean __GLXEW_ATI_render_texture;
|
|
|
|
|
|
|
|
GLXEW_EXPORT GLboolean __GLXEW_EXT_create_context_es2_profile;
|
|
|
|
|
|
|
|
GLXEW_EXPORT GLboolean __GLXEW_EXT_fbconfig_packed_float;
|
|
|
|
|
|
|
|
GLXEW_EXPORT GLboolean __GLXEW_EXT_framebuffer_sRGB;
|
|
|
|
|
|
|
|
GLXEW_EXPORT GLboolean __GLXEW_EXT_import_context;
|
|
|
|
|
|
|
|
GLXEW_EXPORT GLboolean __GLXEW_EXT_scene_marker;
|
|
|
|
|
|
|
|
GLXEW_EXPORT GLboolean __GLXEW_EXT_swap_control;
|
|
|
|
|
|
|
|
GLXEW_EXPORT GLboolean __GLXEW_EXT_texture_from_pixmap;
|
|
|
|
|
|
|
|
GLXEW_EXPORT GLboolean __GLXEW_EXT_visual_info;
|
|
|
|
|
|
|
|
GLXEW_EXPORT GLboolean __GLXEW_EXT_visual_rating;
|
|
|
|
|
|
|
|
GLXEW_EXPORT GLboolean __GLXEW_INTEL_swap_event;
|
|
|
|
|
|
|
|
GLXEW_EXPORT GLboolean __GLXEW_MESA_agp_offset;
|
|
|
|
|
|
|
|
GLXEW_EXPORT GLboolean __GLXEW_MESA_copy_sub_buffer;
|
|
|
|
|
|
|
|
GLXEW_EXPORT GLboolean __GLXEW_MESA_pixmap_colormap;
|
|
|
|
|
|
|
|
GLXEW_EXPORT GLboolean __GLXEW_MESA_release_buffers;
|
|
|
|
|
|
|
|
GLXEW_EXPORT GLboolean __GLXEW_MESA_set_3dfx_mode;
|
|
|
|
|
|
|
|
GLXEW_EXPORT GLboolean __GLXEW_NV_copy_image;
|
|
|
|
|
|
|
|
GLXEW_EXPORT GLboolean __GLXEW_NV_float_buffer;
|
|
|
|
|
|
|
|
GLXEW_EXPORT GLboolean __GLXEW_NV_multisample_coverage;
|
|
|
|
|
|
|
|
GLXEW_EXPORT GLboolean __GLXEW_NV_present_video;
|
|
|
|
|
|
|
|
GLXEW_EXPORT GLboolean __GLXEW_NV_swap_group;
|
|
|
|
|
|
|
|
GLXEW_EXPORT GLboolean __GLXEW_NV_vertex_array_range;
|
|
|
|
|
|
|
|
GLXEW_EXPORT GLboolean __GLXEW_NV_video_output;
|
|
|
|
|
|
|
|
GLXEW_EXPORT GLboolean __GLXEW_OML_swap_method;
|
|
|
|
|
|
|
|
GLXEW_EXPORT GLboolean __GLXEW_OML_sync_control;
|
|
|
|
|
|
|
|
GLXEW_EXPORT GLboolean __GLXEW_SGIS_blended_overlay;
|
|
|
|
|
|
|
|
GLXEW_EXPORT GLboolean __GLXEW_SGIS_color_range;
|
|
|
|
|
|
|
|
GLXEW_EXPORT GLboolean __GLXEW_SGIS_multisample;
|
|
|
|
|
|
|
|
GLXEW_EXPORT GLboolean __GLXEW_SGIS_shared_multisample;
|
|
|
|
|
|
|
|
GLXEW_EXPORT GLboolean __GLXEW_SGIX_fbconfig;
|
|
|
|
|
|
|
|
GLXEW_EXPORT GLboolean __GLXEW_SGIX_hyperpipe;
|
|
|
|
|
|
|
|
GLXEW_EXPORT GLboolean __GLXEW_SGIX_pbuffer;
|
|
|
|
|
|
|
|
GLXEW_EXPORT GLboolean __GLXEW_SGIX_swap_barrier;
|
|
|
|
|
|
|
|
GLXEW_EXPORT GLboolean __GLXEW_SGIX_swap_group;
|
|
|
|
|
|
|
|
GLXEW_EXPORT GLboolean __GLXEW_SGIX_video_resize;
|
|
|
|
|
|
|
|
GLXEW_EXPORT GLboolean __GLXEW_SGIX_visual_select_group;
|
|
|
|
|
|
|
|
GLXEW_EXPORT GLboolean __GLXEW_SGI_cushion;
|
|
|
|
|
|
|
|
GLXEW_EXPORT GLboolean __GLXEW_SGI_make_current_read;
|
|
|
|
|
|
|
|
GLXEW_EXPORT GLboolean __GLXEW_SGI_swap_control;
|
|
|
|
|
|
|
|
GLXEW_EXPORT GLboolean __GLXEW_SGI_video_sync;
|
|
|
|
|
|
|
|
GLXEW_EXPORT GLboolean __GLXEW_SUN_get_transparent_index;
|
|
|
|
|
|
|
|
GLXEW_EXPORT GLboolean __GLXEW_SUN_video_resize;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef GLEW_MX
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXSWAPINTERVALSGIPROC __glewXSwapIntervalSGI;
|
|
|
|
}; /* GLXEWContextStruct */
|
|
|
|
|
|
|
|
#endif /* GLEW_MX */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXGETVIDEOSYNCSGIPROC __glewXGetVideoSyncSGI;
|
|
|
|
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXWAITVIDEOSYNCSGIPROC __glewXWaitVideoSyncSGI;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXGETTRANSPARENTINDEXSUNPROC __glewXGetTransparentIndexSUN;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXGETVIDEORESIZESUNPROC __glewXGetVideoResizeSUN;
|
|
|
|
|
|
|
|
GLXEW_FUN_EXPORT PFNGLXVIDEORESIZESUNPROC __glewXVideoResizeSUN;
|
|
|
|
|
|
|
|
GLXEW_VAR_EXPORT GLboolean __GLXEW_VERSION_1_0;
|
|
|
|
|
|
|
|
GLXEW_VAR_EXPORT GLboolean __GLXEW_VERSION_1_1;
|
|
|
|
|
|
|
|
GLXEW_VAR_EXPORT GLboolean __GLXEW_VERSION_1_2;
|
|
|
|
|
|
|
|
GLXEW_VAR_EXPORT GLboolean __GLXEW_VERSION_1_3;
|
|
|
|
|
|
|
|
GLXEW_VAR_EXPORT GLboolean __GLXEW_VERSION_1_4;
|
|
|
|
|
|
|
|
GLXEW_VAR_EXPORT GLboolean __GLXEW_3DFX_multisample;
|
|
|
|
|
|
|
|
GLXEW_VAR_EXPORT GLboolean __GLXEW_AMD_gpu_association;
|
|
|
|
|
|
|
|
GLXEW_VAR_EXPORT GLboolean __GLXEW_ARB_context_flush_control;
|
|
|
|
|
|
|
|
GLXEW_VAR_EXPORT GLboolean __GLXEW_ARB_create_context;
|
|
|
|
|
|
|
|
GLXEW_VAR_EXPORT GLboolean __GLXEW_ARB_create_context_no_error;
|
|
|
|
|
|
|
|
GLXEW_VAR_EXPORT GLboolean __GLXEW_ARB_create_context_profile;
|
|
|
|
|
|
|
|
GLXEW_VAR_EXPORT GLboolean __GLXEW_ARB_create_context_robustness;
|
|
|
|
|
|
|
|
GLXEW_VAR_EXPORT GLboolean __GLXEW_ARB_fbconfig_float;
|
|
|
|
|
|
|
|
GLXEW_VAR_EXPORT GLboolean __GLXEW_ARB_framebuffer_sRGB;
|
|
|
|
|
|
|
|
GLXEW_VAR_EXPORT GLboolean __GLXEW_ARB_get_proc_address;
|
|
|
|
|
|
|
|
GLXEW_VAR_EXPORT GLboolean __GLXEW_ARB_multisample;
|
|
|
|
|
|
|
|
GLXEW_VAR_EXPORT GLboolean __GLXEW_ARB_robustness_application_isolation;
|
|
|
|
|
|
|
|
GLXEW_VAR_EXPORT GLboolean __GLXEW_ARB_robustness_share_group_isolation;
|
|
|
|
|
|
|
|
GLXEW_VAR_EXPORT GLboolean __GLXEW_ARB_vertex_buffer_object;
|
|
|
|
|
|
|
|
GLXEW_VAR_EXPORT GLboolean __GLXEW_ATI_pixel_format_float;
|
|
|
|
|
|
|
|
GLXEW_VAR_EXPORT GLboolean __GLXEW_ATI_render_texture;
|
|
|
|
|
|
|
|
GLXEW_VAR_EXPORT GLboolean __GLXEW_EXT_buffer_age;
|
|
|
|
|
|
|
|
GLXEW_VAR_EXPORT GLboolean __GLXEW_EXT_create_context_es2_profile;
|
|
|
|
|
|
|
|
GLXEW_VAR_EXPORT GLboolean __GLXEW_EXT_create_context_es_profile;
|
|
|
|
|
|
|
|
GLXEW_VAR_EXPORT GLboolean __GLXEW_EXT_fbconfig_packed_float;
|
|
|
|
|
|
|
|
GLXEW_VAR_EXPORT GLboolean __GLXEW_EXT_framebuffer_sRGB;
|
|
|
|
|
|
|
|
GLXEW_VAR_EXPORT GLboolean __GLXEW_EXT_import_context;
|
|
|
|
|
|
|
|
GLXEW_VAR_EXPORT GLboolean __GLXEW_EXT_libglvnd;
|
|
|
|
|
|
|
|
GLXEW_VAR_EXPORT GLboolean __GLXEW_EXT_scene_marker;
|
|
|
|
|
|
|
|
GLXEW_VAR_EXPORT GLboolean __GLXEW_EXT_stereo_tree;
|
|
|
|
|
|
|
|
GLXEW_VAR_EXPORT GLboolean __GLXEW_EXT_swap_control;
|
|
|
|
|
|
|
|
GLXEW_VAR_EXPORT GLboolean __GLXEW_EXT_swap_control_tear;
|
|
|
|
|
|
|
|
GLXEW_VAR_EXPORT GLboolean __GLXEW_EXT_texture_from_pixmap;
|
|
|
|
|
|
|
|
GLXEW_VAR_EXPORT GLboolean __GLXEW_EXT_visual_info;
|
|
|
|
|
|
|
|
GLXEW_VAR_EXPORT GLboolean __GLXEW_EXT_visual_rating;
|
|
|
|
|
|
|
|
GLXEW_VAR_EXPORT GLboolean __GLXEW_INTEL_swap_event;
|
|
|
|
|
|
|
|
GLXEW_VAR_EXPORT GLboolean __GLXEW_MESA_agp_offset;
|
|
|
|
|
|
|
|
GLXEW_VAR_EXPORT GLboolean __GLXEW_MESA_copy_sub_buffer;
|
|
|
|
|
|
|
|
GLXEW_VAR_EXPORT GLboolean __GLXEW_MESA_pixmap_colormap;
|
|
|
|
|
|
|
|
GLXEW_VAR_EXPORT GLboolean __GLXEW_MESA_query_renderer;
|
|
|
|
|
|
|
|
GLXEW_VAR_EXPORT GLboolean __GLXEW_MESA_release_buffers;
|
|
|
|
|
|
|
|
GLXEW_VAR_EXPORT GLboolean __GLXEW_MESA_set_3dfx_mode;
|
|
|
|
|
|
|
|
GLXEW_VAR_EXPORT GLboolean __GLXEW_MESA_swap_control;
|
|
|
|
|
|
|
|
GLXEW_VAR_EXPORT GLboolean __GLXEW_NV_copy_buffer;
|
|
|
|
|
|
|
|
GLXEW_VAR_EXPORT GLboolean __GLXEW_NV_copy_image;
|
|
|
|
|
|
|
|
GLXEW_VAR_EXPORT GLboolean __GLXEW_NV_delay_before_swap;
|
|
|
|
|
|
|
|
GLXEW_VAR_EXPORT GLboolean __GLXEW_NV_float_buffer;
|
|
|
|
|
|
|
|
GLXEW_VAR_EXPORT GLboolean __GLXEW_NV_multisample_coverage;
|
|
|
|
|
|
|
|
GLXEW_VAR_EXPORT GLboolean __GLXEW_NV_present_video;
|
|
|
|
|
|
|
|
GLXEW_VAR_EXPORT GLboolean __GLXEW_NV_robustness_video_memory_purge;
|
|
|
|
|
|
|
|
GLXEW_VAR_EXPORT GLboolean __GLXEW_NV_swap_group;
|
|
|
|
|
|
|
|
GLXEW_VAR_EXPORT GLboolean __GLXEW_NV_vertex_array_range;
|
|
|
|
|
|
|
|
GLXEW_VAR_EXPORT GLboolean __GLXEW_NV_video_capture;
|
|
|
|
|
|
|
|
GLXEW_VAR_EXPORT GLboolean __GLXEW_NV_video_out;
|
|
|
|
|
|
|
|
GLXEW_VAR_EXPORT GLboolean __GLXEW_OML_swap_method;
|
|
|
|
|
|
|
|
GLXEW_VAR_EXPORT GLboolean __GLXEW_OML_sync_control;
|
|
|
|
|
|
|
|
GLXEW_VAR_EXPORT GLboolean __GLXEW_SGIS_blended_overlay;
|
|
|
|
|
|
|
|
GLXEW_VAR_EXPORT GLboolean __GLXEW_SGIS_color_range;
|
|
|
|
|
|
|
|
GLXEW_VAR_EXPORT GLboolean __GLXEW_SGIS_multisample;
|
|
|
|
|
|
|
|
GLXEW_VAR_EXPORT GLboolean __GLXEW_SGIS_shared_multisample;
|
|
|
|
|
|
|
|
GLXEW_VAR_EXPORT GLboolean __GLXEW_SGIX_fbconfig;
|
|
|
|
|
|
|
|
GLXEW_VAR_EXPORT GLboolean __GLXEW_SGIX_hyperpipe;
|
|
|
|
|
|
|
|
GLXEW_VAR_EXPORT GLboolean __GLXEW_SGIX_pbuffer;
|
|
|
|
|
|
|
|
GLXEW_VAR_EXPORT GLboolean __GLXEW_SGIX_swap_barrier;
|
|
|
|
|
|
|
|
GLXEW_VAR_EXPORT GLboolean __GLXEW_SGIX_swap_group;
|
|
|
|
|
|
|
|
GLXEW_VAR_EXPORT GLboolean __GLXEW_SGIX_video_resize;
|
|
|
|
|
|
|
|
GLXEW_VAR_EXPORT GLboolean __GLXEW_SGIX_visual_select_group;
|
|
|
|
|
|
|
|
GLXEW_VAR_EXPORT GLboolean __GLXEW_SGI_cushion;
|
|
|
|
|
|
|
|
GLXEW_VAR_EXPORT GLboolean __GLXEW_SGI_make_current_read;
|
|
|
|
|
|
|
|
GLXEW_VAR_EXPORT GLboolean __GLXEW_SGI_swap_control;
|
|
|
|
|
|
|
|
GLXEW_VAR_EXPORT GLboolean __GLXEW_SGI_video_sync;
|
|
|
|
|
|
|
|
GLXEW_VAR_EXPORT GLboolean __GLXEW_SUN_get_transparent_index;
|
|
|
|
|
|
|
|
GLXEW_VAR_EXPORT GLboolean __GLXEW_SUN_video_resize;
|
|
|
|
/* ------------------------------------------------------------------------ */
|
|
|
|
/* ------------------------------------------------------------------------ */
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef GLEW_MX
|
|
|
|
GLEWAPI GLenum GLEWAPIENTRY glxewInit ();
|
|
|
|
|
|
|
|
GLEWAPI GLboolean GLEWAPIENTRY glxewIsSupported (const char *name);
|
|
|
|
typedef struct GLXEWContextStruct GLXEWContext;
|
|
|
|
|
|
|
|
extern GLenum glxewContextInit (GLXEWContext* ctx);
|
|
|
|
|
|
|
|
extern GLboolean glxewContextIsSupported (const GLXEWContext* ctx, const char* name);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#define glxewInit() glxewContextInit(glxewGetContext())
|
|
|
|
|
|
|
|
#define glxewIsSupported(x) glxewContextIsSupported(glxewGetContext(), x)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#define GLXEW_GET_VAR(x) (*(const GLboolean*)&(glxewGetContext()->x))
|
|
|
|
|
|
|
|
#define GLXEW_GET_FUN(x) x
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#else /* GLEW_MX */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef GLXEW_GET_VAR
|
|
|
|
#define GLXEW_GET_VAR(x) (*(const GLboolean*)&x)
|
|
|
|
#define GLXEW_GET_VAR(x) (*(const GLboolean*)&x)
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef GLXEW_GET_FUN
|
|
|
|
#define GLXEW_GET_FUN(x) x
|
|
|
|
#define GLXEW_GET_FUN(x) x
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
extern GLboolean glxewIsSupported (const char* name);
|
|
|
|
GLEWAPI GLboolean GLEWAPIENTRY glxewGetExtension (const char *name);
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* GLEW_MX */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
extern GLboolean glxewGetExtension (const char* name);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
}
|