From: Marek Olšák Date: Mon, 13 Sep 2010 07:54:46 +0000 (+0200) Subject: r300g: print unassigned FS inputs for DBG_RS X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=6990148b1241336a22dace3c160952c4a64879c5;p=mesa.git r300g: print unassigned FS inputs for DBG_RS --- diff --git a/src/gallium/drivers/r300/r300_state_derived.c b/src/gallium/drivers/r300/r300_state_derived.c index 960dfdbaf03..f9a516825df 100644 --- a/src/gallium/drivers/r300/r300_state_derived.c +++ b/src/gallium/drivers/r300/r300_state_derived.c @@ -477,6 +477,15 @@ static void r300_update_rs_block(struct r300_context *r300) } } + if (DBG_ON(r300, DBG_RS)) { + for (; i < ATTR_GENERIC_COUNT; i++) { + if (fs_inputs->generic[i] != ATTR_UNUSED) { + DBG(r300, DBG_RS, + "r300: FS input generic %i unassigned.\n", i); + } + } + } + /* Rasterize fog coordinates. */ if (vs_outputs->fog != ATTR_UNUSED && tex_count < 8) { /* Set up the fog coordinates in VAP. */