diff options
author | Brian Paul <[email protected]> | 2004-09-13 19:58:27 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2004-09-13 19:58:27 +0000 |
commit | c3912b66abb23ce2db00723a4cb79ac84ae4a086 (patch) | |
tree | a0a36e5dda38ea87d56d32c7229810d5321b9ec0 /src/mesa/main/attrib.c | |
parent | 4ef9ad22ae07b861e7f7ec6448ed589b14ac15d8 (diff) |
Handle GL_MAX_VERTEX_ATTRIBS_ARB in glGet*().
Define 2.0 point-sprite related tokens in glheader.h (temporary).
Diffstat (limited to 'src/mesa/main/attrib.c')
-rw-r--r-- | src/mesa/main/attrib.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/mesa/main/attrib.c b/src/mesa/main/attrib.c index dabb622ce08..1f490540d89 100644 --- a/src/mesa/main/attrib.c +++ b/src/mesa/main/attrib.c @@ -1,6 +1,6 @@ /* * Mesa 3-D graphics library - * Version: 6.1 + * Version: 6.2 * * Copyright (C) 1999-2004 Brian Paul All Rights Reserved. * @@ -1017,10 +1017,8 @@ _mesa_PopAttrib(void) _mesa_set_enable(ctx, GL_POINT_SPRITE_NV,point->PointSprite); _mesa_PointParameteriNV(GL_POINT_SPRITE_R_MODE_NV, ctx->Point.SpriteRMode); -#if GL_VERSION_2_0 _mesa_PointParameterfEXT(GL_POINT_SPRITE_COORD_ORIGIN, (GLfloat)ctx->Point.SpriteOrigin); -#endif } } break; |