mesa: Also print _NEW_STENCIL in _mesa_print_state()
authorKristian Høgsberg <krh@bitplanet.net>
Tue, 23 Mar 2010 16:07:45 +0000 (12:07 -0400)
committerKristian Høgsberg <krh@bitplanet.net>
Tue, 23 Mar 2010 19:29:05 +0000 (15:29 -0400)
src/mesa/main/debug.c

index 33b35e03c79d4bb7e3eeefca8c7f8c65fdf85bc6..9bcfc1008a8852f402733053645ceecfdd279c35 100644 (file)
@@ -85,7 +85,7 @@ void
 _mesa_print_state( const char *msg, GLuint state )
 {
    _mesa_debug(NULL,
-          "%s: (0x%x) %s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s\n",
+          "%s: (0x%x) %s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s\n",
           msg,
           state,
           (state & _NEW_MODELVIEW)       ? "ctx->ModelView, " : "",
@@ -105,6 +105,7 @@ _mesa_print_state( const char *msg, GLuint state )
           (state & _NEW_POLYGON)         ? "ctx->Polygon, " : "",
           (state & _NEW_POLYGONSTIPPLE)  ? "ctx->PolygonStipple, " : "",
           (state & _NEW_SCISSOR)         ? "ctx->Scissor, " : "",
+          (state & _NEW_STENCIL)         ? "ctx->Stencil, " : "",
           (state & _NEW_TEXTURE)         ? "ctx->Texture, " : "",
           (state & _NEW_TRANSFORM)       ? "ctx->Transform, " : "",
           (state & _NEW_VIEWPORT)        ? "ctx->Viewport, " : "",