diff options
author | Keith Whitwell <keith@tungstengraphics.com> | 2008-09-11 20:08:07 +0100 |
---|---|---|
committer | Keith Whitwell <keith@tungstengraphics.com> | 2008-09-11 20:08:07 +0100 |
commit | 7ee599d30b9538b41bc082e71f9e800acbf09759 (patch) | |
tree | ebcb562fa1e24b7232ec686c1825ff53fd7d6965 /src | |
parent | a90cae8a17283a4d50ba153510aecfbee9f63c66 (diff) |
mesa: update PointParameter usage
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/main/attrib.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/main/attrib.c b/src/mesa/main/attrib.c index 1a2c34b710..32d86ce149 100644 --- a/src/mesa/main/attrib.c +++ b/src/mesa/main/attrib.c @@ -1109,9 +1109,9 @@ _mesa_PopAttrib(void) } _mesa_set_enable(ctx, GL_POINT_SPRITE_NV,point->PointSprite); if (ctx->Extensions.NV_point_sprite) - _mesa_PointParameteriNV(GL_POINT_SPRITE_R_MODE_NV, + _mesa_PointParameteri(GL_POINT_SPRITE_R_MODE_NV, ctx->Point.SpriteRMode); - _mesa_PointParameterfEXT(GL_POINT_SPRITE_COORD_ORIGIN, + _mesa_PointParameterf(GL_POINT_SPRITE_COORD_ORIGIN, (GLfloat)ctx->Point.SpriteOrigin); } } |