diff options
author | marha <marha@users.sourceforge.net> | 2011-02-09 08:04:41 +0000 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2011-02-09 08:04:41 +0000 |
commit | 744bc6a5e71f207a33b0826598c1f93302f7fe01 (patch) | |
tree | 63dcb1464076af2a0eba4f5655bfb2ebb47fe486 /mesalib/src/mesa/main/lines.c | |
parent | 67ff1435e31fee46b1bc8d1c65da27f8ad1c39f9 (diff) | |
parent | 51a59b7f7f9b134791d3b09673063e4c45ea9eee (diff) | |
download | vcxsrv-744bc6a5e71f207a33b0826598c1f93302f7fe01.tar.gz vcxsrv-744bc6a5e71f207a33b0826598c1f93302f7fe01.tar.bz2 vcxsrv-744bc6a5e71f207a33b0826598c1f93302f7fe01.zip |
svn merge ^/branches/released .
Diffstat (limited to 'mesalib/src/mesa/main/lines.c')
-rw-r--r-- | mesalib/src/mesa/main/lines.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/mesalib/src/mesa/main/lines.c b/mesalib/src/mesa/main/lines.c index 79385cd75..1df409f45 100644 --- a/mesalib/src/mesa/main/lines.c +++ b/mesalib/src/mesa/main/lines.c @@ -43,6 +43,9 @@ _mesa_LineWidth( GLfloat width ) GET_CURRENT_CONTEXT(ctx);
ASSERT_OUTSIDE_BEGIN_END(ctx);
+ if (MESA_VERBOSE & VERBOSE_API)
+ _mesa_debug(ctx, "glLineWidth %f\n", width);
+
if (width<=0.0) {
_mesa_error( ctx, GL_INVALID_VALUE, "glLineWidth" );
return;
@@ -77,6 +80,9 @@ _mesa_LineStipple( GLint factor, GLushort pattern ) GET_CURRENT_CONTEXT(ctx);
ASSERT_OUTSIDE_BEGIN_END(ctx);
+ if (MESA_VERBOSE & VERBOSE_API)
+ _mesa_debug(ctx, "glLineStipple %d %u\n", factor, pattern);
+
factor = CLAMP( factor, 1, 256 );
if (ctx->Line.StippleFactor == factor &&
|