From: Marek Olšák Date: Fri, 25 Dec 2009 16:09:21 +0000 (+0100) Subject: r300g: fix SWTCL stream locations of texture coordinates X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7679ac2caa4fbc304c38e95b1230a6cdebdbc691;p=mesa.git r300g: fix SWTCL stream locations of texture coordinates It might have caused hardlocks when TCL was bypassed, not sure. --- diff --git a/src/gallium/drivers/r300/r300_vs.c b/src/gallium/drivers/r300/r300_vs.c index 3512a6dc760..cb4b6ee71e7 100644 --- a/src/gallium/drivers/r300/r300_vs.c +++ b/src/gallium/drivers/r300/r300_vs.c @@ -187,7 +187,7 @@ static void r300_stream_locations_notcl( /* Texture coordinates. */ gen_count = 0; for (i = 0; i < ATTR_GENERIC_COUNT; i++) { - if (vs_outputs->bcolor[i] != ATTR_UNUSED) { + if (vs_outputs->generic[i] != ATTR_UNUSED) { assert(tabi < 16); stream_loc[tabi++] = 6 + gen_count; gen_count++;