put back missing Driver.PolygonMode call (bug 9578)

This commit is contained in:
Roland Scheidegger 2007-01-09 14:42:22 +01:00
parent dfabf96607
commit 96c5db5f7a
1 changed files with 3 additions and 0 deletions

View File

@ -166,6 +166,9 @@ _mesa_PolygonMode( GLenum face, GLenum mode )
_mesa_error( ctx, GL_INVALID_ENUM, "glPolygonMode(face)" );
return;
}
if (ctx->Driver.PolygonMode)
ctx->Driver.PolygonMode(ctx, face, mode);
}
#if _HAVE_FULL_GL