summaryrefslogtreecommitdiff
path: root/src/mesa/main
diff options
context:
space:
mode:
authorKeith Whitwell <keith@tungstengraphics.com>2001-02-27 16:14:35 +0000
committerKeith Whitwell <keith@tungstengraphics.com>2001-02-27 16:14:35 +0000
commitbed4c5bf58c91f37e2526bbb98fbda27c65455ff (patch)
treeacea10c0b99a8ca3cd02950bb10f3b20f491e4d1 /src/mesa/main
parent18c516655faa7973f981726e91928b525d046df6 (diff)
Initialize Line._Width
Diffstat (limited to 'src/mesa/main')
-rw-r--r--src/mesa/main/context.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/main/context.c b/src/mesa/main/context.c
index 7d0e427f40..b8c263ad0e 100644
--- a/src/mesa/main/context.c
+++ b/src/mesa/main/context.c
@@ -1,4 +1,4 @@
-/* $Id: context.c,v 1.122 2001/02/26 23:58:12 brianp Exp $ */
+/* $Id: context.c,v 1.123 2001/02/27 16:14:35 keithw Exp $ */
/*
* Mesa 3-D graphics library
@@ -974,6 +974,7 @@ init_attrib_groups( GLcontext *ctx )
ctx->Line.SmoothFlag = GL_FALSE;
ctx->Line.StippleFlag = GL_FALSE;
ctx->Line.Width = 1.0;
+ ctx->Line._Width = 1.0;
ctx->Line.StipplePattern = 0xffff;
ctx->Line.StippleFactor = 1;