Difference for arch/ogl/include/loadgl.h from version 1.4 to 1.5


version 1.4 version 1.5
Line 34
 
Line 34
 #define GL_MAX_TEXTURES_SGIS 0x835D   #define GL_MAX_TEXTURES_SGIS 0x835D
 #endif   #endif
    
   #ifndef GL_EXT_paletted_texture
   #define GL_EXT_paletted_texture 1
   #define GL_COLOR_INDEX8_EXT 0x80E5
   #define GL_TEXTURE_INDEX_SIZE_EXT 0x80ED
   #endif
    
 #ifdef _cplusplus   #ifdef _cplusplus
 #define OEXTERN extern "C"   #define OEXTERN extern "C"
Line 391
 
Line 396
 #define glMultiTexCoord2fSGIS dglMultiTexCoord2fSGIS   #define glMultiTexCoord2fSGIS dglMultiTexCoord2fSGIS
 #define glSelectTextureSGIS dglSelectTextureSGIS   #define glSelectTextureSGIS dglSelectTextureSGIS
    
   #define glColorTableEXT dglColorTableEXT
   
 #ifdef WIN32   #ifdef WIN32
 #define wglCopyContext dwglCopyContext   #define wglCopyContext dwglCopyContext
 #define wglCreateContext dwglCreateContext   #define wglCreateContext dwglCreateContext
Line 756
 
Line 763
 typedef void (OGLFUNCCALL *glActiveTextureARB_fp)(GLenum target);   typedef void (OGLFUNCCALL *glActiveTextureARB_fp)(GLenum target);
 typedef void (OGLFUNCCALL *glMultiTexCoord2fSGIS_fp)(GLenum target, GLfloat s, GLfloat t);   typedef void (OGLFUNCCALL *glMultiTexCoord2fSGIS_fp)(GLenum target, GLfloat s, GLfloat t);
 typedef void (OGLFUNCCALL *glSelectTextureSGIS_fp)(GLenum target);   typedef void (OGLFUNCCALL *glSelectTextureSGIS_fp)(GLenum target);
   typedef void (OGLFUNCCALL *glColorTableEXT_fp)(GLenum target, GLenum internalformat, GLsizei width, GLenum format, GLenum type, const GLvoid *table);
    
 #ifdef WIN32   #ifdef WIN32
 typedef BOOL  (OGLFUNCCALL *wglCopyContext_fp)(HGLRC, HGLRC, UINT);   typedef BOOL  (OGLFUNCCALL *wglCopyContext_fp)(HGLRC, HGLRC, UINT);
Line 1122
 
Line 1130
 DEFVAR glActiveTextureARB_fp dglActiveTextureARB;   DEFVAR glActiveTextureARB_fp dglActiveTextureARB;
 DEFVAR glMultiTexCoord2fSGIS_fp dglMultiTexCoord2fSGIS;   DEFVAR glMultiTexCoord2fSGIS_fp dglMultiTexCoord2fSGIS;
 DEFVAR glSelectTextureSGIS_fp dglSelectTextureSGIS;   DEFVAR glSelectTextureSGIS_fp dglSelectTextureSGIS;
   DEFVAR glColorTableEXT_fp dglColorTableEXT;
    
 #ifdef WIN32   #ifdef WIN32
 DEFVAR wglCopyContext_fp dwglCopyContext;   DEFVAR wglCopyContext_fp dwglCopyContext;
Line 1937
 
Line 1946
  dglActiveTextureARB = NULL;    dglActiveTextureARB = NULL;
  dglMultiTexCoord2fSGIS = NULL;    dglMultiTexCoord2fSGIS = NULL;
  dglSelectTextureSGIS = NULL;    dglSelectTextureSGIS = NULL;
   
    dglColorTableEXT = NULL;
    
 #ifdef WIN32   #ifdef WIN32
  dwglCopyContext = NULL;    dwglCopyContext = NULL;

Legend:
line(s) removed in v.1.4 
line(s) changed
 line(s) added in v.1.5