diff options
author | Brian Paul <[email protected]> | 2000-12-08 00:20:15 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2000-12-08 00:20:15 +0000 |
commit | 06d05afdd687fcd1d59d46c6a86c2e5707e1859b (patch) | |
tree | 420757bc9e8fbf482ef12cdca2d578b379165a32 /src/mesa/main/context.c | |
parent | fb7899bfec447e5840c2c1ea96619084093be424 (diff) |
Initial work on GL_MESA_sprite_point extension.
Still need to resolve clipping issues, finalize the spec.
Diffstat (limited to 'src/mesa/main/context.c')
-rw-r--r-- | src/mesa/main/context.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/main/context.c b/src/mesa/main/context.c index 504de6e5874..ae3397c1480 100644 --- a/src/mesa/main/context.c +++ b/src/mesa/main/context.c @@ -1,4 +1,4 @@ -/* $Id: context.c,v 1.110 2000/11/27 18:22:13 brianp Exp $ */ +/* $Id: context.c,v 1.111 2000/12/08 00:20:15 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -1094,6 +1094,7 @@ 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 */ /* Polygon group */ ctx->Polygon.CullFlag = GL_FALSE; |