mesa: Branch 'master'

Roland Scheidegger sroland at kemper.freedesktop.org
Tue Jan 9 13:42:36 UTC 2007


 src/mesa/main/polygon.c |    3 +++
 1 files changed, 3 insertions(+)

New commits:
diff-tree 96c5db5f7ae2cb9d98f534285c34217ce9c2abf3 (from dfabf9660751f0d7cfc7cad6539af4d7ccd9147e)
Author: Roland Scheidegger <sroland at tungstengraphics.com>
Date:   Tue Jan 9 14:42:22 2007 +0100

    put back missing Driver.PolygonMode call (bug 9578)

diff --git a/src/mesa/main/polygon.c b/src/mesa/main/polygon.c
index 814f7ec..fd02e5a 100644
--- a/src/mesa/main/polygon.c
+++ b/src/mesa/main/polygon.c
@@ -166,6 +166,9 @@ _mesa_PolygonMode( GLenum face, GLenum m
       _mesa_error( ctx, GL_INVALID_ENUM, "glPolygonMode(face)" );
       return;
    }
+
+   if (ctx->Driver.PolygonMode)
+      ctx->Driver.PolygonMode(ctx, face, mode);
 }
 
 #if _HAVE_FULL_GL



More information about the mesa-commit mailing list