diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2000-06-27 04:29:22 +0000 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2000-06-27 04:29:22 +0000 |
commit | a25f7e1d90afa2a824e653c54be8e8686579ec3b (patch) | |
tree | 7d45b7e528a8b002a2023222a20be27b8b0d2109 /src/mesa/main | |
parent | fd3df4b0f78d7e72aeac6c99c3691d45378cff25 (diff) |
init Point.UserSize
Diffstat (limited to 'src/mesa/main')
-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 1fa5fb8381..d17897a7df 100644 --- a/src/mesa/main/context.c +++ b/src/mesa/main/context.c @@ -1,4 +1,4 @@ -/* $Id: context.c,v 1.70 2000/05/26 14:44:59 brianp Exp $ */ +/* $Id: context.c,v 1.71 2000/06/27 04:29:22 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -1067,6 +1067,7 @@ init_attrib_groups( GLcontext *ctx ) /* Point group */ ctx->Point.SmoothFlag = GL_FALSE; + ctx->Point.UserSize = 1.0; ctx->Point.Size = 1.0; ctx->Point.Params[0] = 1.0; ctx->Point.Params[1] = 0.0; |