summaryrefslogtreecommitdiff
path: root/src/mesa/main/dd.h
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2000-03-03 18:55:45 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2000-03-03 18:55:45 +0000
commit1b6592aae72e7974a16437c64f90152e83917450 (patch)
tree4f0b8a7f02c016c28f5e2f3822ba748176445554 /src/mesa/main/dd.h
parent4f980f4ebb0fc9ec9032a31d54cc1fd745359e0b (diff)
added LineWidth device driver function
Diffstat (limited to 'src/mesa/main/dd.h')
-rw-r--r--src/mesa/main/dd.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/main/dd.h b/src/mesa/main/dd.h
index d2b985f384..7366542512 100644
--- a/src/mesa/main/dd.h
+++ b/src/mesa/main/dd.h
@@ -1,4 +1,4 @@
-/* $Id: dd.h,v 1.14 2000/03/03 17:54:56 brianp Exp $ */
+/* $Id: dd.h,v 1.15 2000/03/03 18:55:45 brianp Exp $ */
/*
* Mesa 3-D graphics library
@@ -727,6 +727,7 @@ struct dd_function_table {
GLenum pname, const GLfloat *params, GLint nparams );
void (*LightModelfv)(GLcontext *ctx, GLenum pname, const GLfloat *params);
void (*LineStipple)(GLcontext *ctx, GLint factor, GLushort pattern );
+ void (*LineWidth)(GLcontext *ctx, GLfloat width);
void (*LogicOpcode)(GLcontext *ctx, GLenum opcode);
void (*PolygonMode)(GLcontext *ctx, GLenum face, GLenum mode);
void (*PolygonStipple)(GLcontext *ctx, const GLubyte *mask );