From: Dave Airlie Date: Tue, 21 Jan 2014 04:54:05 +0000 (+1000) Subject: llvmpipe: dump geometry shaders when using LP_DEBUG=tgsi X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2212a97fe36f0d20c4c8dc1db1a3c7da08126f95;p=mesa.git llvmpipe: dump geometry shaders when using LP_DEBUG=tgsi for consistency with vs and fs dumpers. Reviewed-by: Brian Paul Signed-off-by: Dave Airlie --- diff --git a/src/gallium/drivers/llvmpipe/lp_state_gs.c b/src/gallium/drivers/llvmpipe/lp_state_gs.c index 8f4f3894e01..74cf9923488 100644 --- a/src/gallium/drivers/llvmpipe/lp_state_gs.c +++ b/src/gallium/drivers/llvmpipe/lp_state_gs.c @@ -28,6 +28,7 @@ #include "lp_context.h" #include "lp_state.h" #include "lp_texture.h" +#include "lp_debug.h" #include "pipe/p_defines.h" #include "util/u_memory.h" @@ -50,8 +51,10 @@ llvmpipe_create_gs_state(struct pipe_context *pipe, goto fail; /* debug */ - if (0) + if (LP_DEBUG & DEBUG_TGSI) { + debug_printf("llvmpipe: Create geometry shader %p:\n", (void *)state); tgsi_dump(templ->tokens, 0); + } /* copy stream output info */ state->shader = *templ;