summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/lines.c
diff options
context:
space:
mode:
authorBrian <brian@yutani.localnet.net>2006-12-13 15:31:14 -0700
committerBrian <brian@yutani.localnet.net>2006-12-13 15:31:14 -0700
commit8dcfcad7a2598ba835930aac8f3fd6576e464c1c (patch)
tree980a80caa5c4c2666b106285d72bcff009adde25 /src/mesa/main/lines.c
parent6c305c083113075a1f11d5081b8c9dd1b98a7b1e (diff)
downloadexternal_mesa3d-8dcfcad7a2598ba835930aac8f3fd6576e464c1c.zip
external_mesa3d-8dcfcad7a2598ba835930aac8f3fd6576e464c1c.tar.gz
external_mesa3d-8dcfcad7a2598ba835930aac8f3fd6576e464c1c.tar.bz2
Move all the code for computing ctx->_TriangleCaps into state.c.
ctx->_TriangleCaps should probably go away altogether someday...
Diffstat (limited to 'src/mesa/main/lines.c')
-rw-r--r--src/mesa/main/lines.c23
1 files changed, 3 insertions, 20 deletions
diff --git a/src/mesa/main/lines.c b/src/mesa/main/lines.c
index c30d9ac..dc7195d 100644
--- a/src/mesa/main/lines.c
+++ b/src/mesa/main/lines.c
@@ -1,13 +1,8 @@
-/**
- * \file lines.c
- * Line operations.
- */
-
/*
* Mesa 3-D graphics library
- * Version: 5.1
+ * Version: 6.5.3
*
- * Copyright (C) 1999-2003 Brian Paul All Rights Reserved.
+ * Copyright (C) 1999-2006 Brian Paul All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
@@ -43,12 +38,6 @@
* \param width line width in pixels.
*
* \sa glLineWidth().
- *
- * Verifies the parameter and updates gl_line_attrib::Width. On a change,
- * flushes the vertices, updates the clamped line width and marks the
- * DD_LINE_WIDTH flag in __GLcontextRec::_TriangleCaps for the drivers if the
- * width is different from one. Notifies the driver via the
- * dd_function_table::LineWidth callback.
*/
void GLAPIENTRY
_mesa_LineWidth( GLfloat width )
@@ -70,14 +59,8 @@ _mesa_LineWidth( GLfloat width )
ctx->Const.MinLineWidth,
ctx->Const.MaxLineWidth);
-
- if (width != 1.0)
- ctx->_TriangleCaps |= DD_LINE_WIDTH;
- else
- ctx->_TriangleCaps &= ~DD_LINE_WIDTH;
-
if (ctx->Driver.LineWidth)
- (*ctx->Driver.LineWidth)(ctx, width);
+ ctx->Driver.LineWidth(ctx, width);
}