Ignore:
Timestamp:
May 23, 2000, 10:41:28 PM (25 years ago)
Author:
jeroen
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/opengl/mesa/GL/gl.h

    r3086 r3598  
    1 /* $Id: gl.h,v 1.5 2000-03-11 17:06:35 sandervl Exp $ */
     1/* $Id: gl.h,v 1.6 2000-05-23 20:41:25 jeroen Exp $ */
    22
    33/*
    44 * Mesa 3-D graphics library
    5  * Version:  3.1
     5 * Version:  3.3
    66 *
    77 * Copyright (C) 1999  Brian Paul   All Rights Reserved.
     
    126126#define GL_VERSION_1_1   1
    127127#define GL_VERSION_1_2   1
     128#define GL_HAS_GLEXT     1
    128129
    129130
     
    716717
    717718        /* Errors */
     719        GL_NO_ERROR                     = 0x0,
    718720        GL_INVALID_VALUE                = 0x0501,
    719721        GL_INVALID_ENUM                 = 0x0500,
     
    869871        GL_TEXTURE_BASE_LEVEL                   = 0x813C,
    870872        GL_TEXTURE_MAX_LEVEL                    = 0x813D,
     873        GL_SMOOTH_POINT_SIZE_RANGE              = 0x0B12,
     874        GL_SMOOTH_POINT_SIZE_GRANULARITY        = 0x0B13,
     875        GL_SMOOTH_LINE_WIDTH_RANGE              = 0x0B22,
     876        GL_SMOOTH_LINE_WIDTH_GRANULARITY        = 0x0B23,
     877        GL_ALIASED_POINT_SIZE_RANGE             = 0x846D,
     878        GL_ALIASED_LINE_WIDTH_RANGE             = 0x846E,
    871879
    872880        /* GL_ARB_multitexture */
     
    10151023
    10161024        /* GL_EXT_compiled_vertex_array */
    1017         GL_ARRAY_ELEMENT_LOCK_FIRST_SGI         = 0x81A8,
    1018         GL_ARRAY_ELEMENT_LOCK_COUNT_SGI         = 0x81A9,
     1025        GL_ARRAY_ELEMENT_LOCK_FIRST_EXT         = 0x81A8,
     1026        GL_ARRAY_ELEMENT_LOCK_COUNT_EXT         = 0x81A9,
    10191027
    10201028        /* GL_EXT_clip_volume_hint */
     
    11011109typedef float           GLfloat;        /* single precision float */
    11021110typedef float           GLclampf;       /* single precision float in [0,1] */
    1103 typedef double          GLdouble;       /* double precision float */
    1104 typedef double          GLclampd;       /* double precision float in [0,1] */
     1111typedef double          GLdouble;      /* double precision float          */
     1112typedef double          GLclampd;      /* double precision float in [0,1] */
    11051113
    11061114
     
    11141122 * Miscellaneous
    11151123 */
     1124
     1125GLAPI void GLAPIENTRY glHintPGI(GLenum target, GLint mode);
    11161126
    11171127GLAPI void GLAPIENTRY glClearIndex( GLfloat c );
     
    19371947                                       GLenum type, const GLvoid *table );
    19381948
    1939 GLAPI void GLAPIENTRY glColorSubTableEXT( GLenum target,
     1949/*GLAPI void GLAPIENTRY glColorSubTableEXT( GLenum target,
    19401950                                          GLsizei start, GLsizei count,
    19411951                                          GLenum format, GLenum type,
    19421952                                          const GLvoid *data );
    1943 
     1953*/
    19441954GLAPI void GLAPIENTRY glGetColorTableEXT( GLenum target, GLenum format,
    19451955                                          GLenum type, GLvoid *table );
Note: See TracChangeset for help on using the changeset viewer.