diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2002-05-27 17:04:52 +0000 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2002-05-27 17:04:52 +0000 |
commit | 6c408b46678637959dba04663fbc34eb9c4bc397 (patch) | |
tree | 6fddafa97a16c2e48fc984a8e5f27b1e8d770677 /src/mesa/main/get.c | |
parent | 23d8ef3937b3b66684f7feb62446abca8e91d307 (diff) |
replaced experimental MESA_sprite_point with NV_point_sprite
Diffstat (limited to 'src/mesa/main/get.c')
-rw-r--r-- | src/mesa/main/get.c | 50 |
1 files changed, 33 insertions, 17 deletions
diff --git a/src/mesa/main/get.c b/src/mesa/main/get.c index 0b63eab77c..0705f884e6 100644 --- a/src/mesa/main/get.c +++ b/src/mesa/main/get.c @@ -1,4 +1,4 @@ -/* $Id: get.c,v 1.78 2002/05/09 21:54:16 brianp Exp $ */ +/* $Id: get.c,v 1.79 2002/05/27 17:04:53 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -1325,10 +1325,14 @@ _mesa_GetBooleanv( GLenum pname, GLboolean *params ) *params = ctx->Transform.RasterPositionUnclipped; break; - /* GL_MESA_sprite_point */ - case GL_SPRITE_POINT_MESA: - CHECK_EXTENSION_B(MESA_sprite_point); - *params = ctx->Point.SpriteMode; + /* GL_NV_point_sprite */ + case GL_POINT_SPRITE_NV: + CHECK_EXTENSION_B(NV_point_sprite); + *params = ctx->Point.PointSprite; + break; + case GL_POINT_SPRITE_R_MODE_NV: + CHECK_EXTENSION_B(NV_point_sprite); + *params = ENUM_TO_BOOL(ctx->Point.SpriteRMode); break; /* GL_SGIS_generate_mipmap */ @@ -2654,10 +2658,14 @@ _mesa_GetDoublev( GLenum pname, GLdouble *params ) *params = (GLdouble) ctx->Transform.RasterPositionUnclipped; break; - /* GL_MESA_sprite_point */ - case GL_SPRITE_POINT_MESA: - CHECK_EXTENSION_D(MESA_sprite_point); - *params = (GLdouble) ctx->Point.SpriteMode; + /* GL_NV_point_sprite */ + case GL_POINT_SPRITE_NV: + CHECK_EXTENSION_B(NV_point_sprite); + *params = (GLdouble) ctx->Point.PointSprite; + break; + case GL_POINT_SPRITE_R_MODE_NV: + CHECK_EXTENSION_B(NV_point_sprite); + *params = (GLdouble) ctx->Point.SpriteRMode; break; /* GL_SGIS_generate_mipmap */ @@ -3869,10 +3877,14 @@ _mesa_GetFloatv( GLenum pname, GLfloat *params ) *params = (GLfloat) ctx->Transform.RasterPositionUnclipped; break; - /* GL_MESA_sprite_point */ - case GL_SPRITE_POINT_MESA: - CHECK_EXTENSION_F(MESA_sprite_point); - *params = (GLfloat) ctx->Point.SpriteMode; + /* GL_NV_point_sprite */ + case GL_POINT_SPRITE_NV: + CHECK_EXTENSION_B(NV_point_sprite); + *params = (GLfloat) ctx->Point.PointSprite; + break; + case GL_POINT_SPRITE_R_MODE_NV: + CHECK_EXTENSION_B(NV_point_sprite); + *params = (GLfloat) ctx->Point.SpriteRMode; break; /* GL_SGIS_generate_mipmap */ @@ -5122,10 +5134,14 @@ _mesa_GetIntegerv( GLenum pname, GLint *params ) *params = (GLint) ctx->Transform.RasterPositionUnclipped; break; - /* GL_MESA_sprite_point */ - case GL_SPRITE_POINT_MESA: - CHECK_EXTENSION_I(MESA_sprite_point); - *params = (GLint) ctx->Point.SpriteMode; + /* GL_NV_point_sprite */ + case GL_POINT_SPRITE_NV: + CHECK_EXTENSION_B(NV_point_sprite); + *params = (GLint) ctx->Point.PointSprite; + break; + case GL_POINT_SPRITE_R_MODE_NV: + CHECK_EXTENSION_B(NV_point_sprite); + *params = (GLint) ctx->Point.SpriteRMode; break; /* GL_SGIS_generate_mipmap */ |