diff options
author | Brian Paul <[email protected]> | 2002-05-27 17:04:52 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2002-05-27 17:04:52 +0000 |
commit | 6c408b46678637959dba04663fbc34eb9c4bc397 (patch) | |
tree | 6fddafa97a16c2e48fc984a8e5f27b1e8d770677 /src/mesa/main/context.c | |
parent | 23d8ef3937b3b66684f7feb62446abca8e91d307 (diff) |
replaced experimental MESA_sprite_point with NV_point_sprite
Diffstat (limited to 'src/mesa/main/context.c')
-rw-r--r-- | src/mesa/main/context.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/mesa/main/context.c b/src/mesa/main/context.c index b4e746d769a..420bfa46914 100644 --- a/src/mesa/main/context.c +++ b/src/mesa/main/context.c @@ -1,4 +1,4 @@ -/* $Id: context.c,v 1.162 2002/05/09 21:54:16 brianp Exp $ */ +/* $Id: context.c,v 1.163 2002/05/27 17:04:52 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -1116,7 +1116,11 @@ init_attrib_groups( GLcontext *ctx ) ctx->Point.MinSize = 0.0; ctx->Point.MaxSize = ctx->Const.MaxPointSize; ctx->Point.Threshold = 1.0; - ctx->Point.SpriteMode = GL_FALSE; /* GL_MESA_sprite_point */ + ctx->Point.PointSprite = GL_FALSE; /* GL_NV_point_sprite */ + ctx->Point.SpriteRMode = GL_ZERO; /* GL_NV_point_sprite */ + for (i = 0; i < MAX_TEXTURE_UNITS; i++) { + ctx->Point.CoordReplace[i] = GL_FALSE; /* GL_NV_point_sprite */ + } /* Polygon group */ ctx->Polygon.CullFlag = GL_FALSE; |