diff options
author | Brian Paul <[email protected]> | 2000-11-15 16:38:40 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2000-11-15 16:38:40 +0000 |
commit | 24a32627d9a1b23323429b989bb5705a695fb4c1 (patch) | |
tree | 775c71f6c97c58e88c85deabaa96c2f18e2f7b00 /src/mesa/main/context.c | |
parent | 30971cd098d147a4363df0dec0c338587dc1478f (diff) |
Replaced ctx->Point.Size with ctx->Point._Size
Replaced ctx->Point.UserSize with ctx->Point.Size
Diffstat (limited to 'src/mesa/main/context.c')
-rw-r--r-- | src/mesa/main/context.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/main/context.c b/src/mesa/main/context.c index f8efa207961..aff60fb5073 100644 --- a/src/mesa/main/context.c +++ b/src/mesa/main/context.c @@ -1,4 +1,4 @@ -/* $Id: context.c,v 1.104 2000/11/13 20:02:56 keithw Exp $ */ +/* $Id: context.c,v 1.105 2000/11/15 16:38:40 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -1153,14 +1153,14 @@ init_attrib_groups( GLcontext *ctx ) /* Point group */ ctx->Point.SmoothFlag = GL_FALSE; - ctx->Point.UserSize = 1.0; ctx->Point.Size = 1.0; + ctx->Point._Size = 1.0; ctx->Point.Params[0] = 1.0; ctx->Point.Params[1] = 0.0; ctx->Point.Params[2] = 0.0; ctx->Point._Attenuated = GL_FALSE; ctx->Point.MinSize = 0.0; - ctx->Point.MaxSize = (GLfloat) MAX_POINT_SIZE; + ctx->Point.MaxSize = ctx->Const.MaxPointSize; ctx->Point.Threshold = 1.0; /* Polygon group */ |