Module: Mesa Branch: master Commit: ec1476bf31f00f5091e2a568b277962d8b667248 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=ec1476bf31f00f5091e2a568b277962d8b667248
Author: Corbin Simpson <[email protected]> Date: Sat Mar 7 00:55:10 2009 -0800 r300-gallium: Typo in assert. --- src/gallium/drivers/r300/r300_state_derived.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/gallium/drivers/r300/r300_state_derived.c b/src/gallium/drivers/r300/r300_state_derived.c index d15b4ff..e6bb408 100644 --- a/src/gallium/drivers/r300/r300_state_derived.c +++ b/src/gallium/drivers/r300/r300_state_derived.c @@ -143,7 +143,7 @@ static void r300_update_vertex_layout(struct r300_context* r300) for (i = 0; i < vinfo.num_attribs; i++) { /* Make sure we have a proper destination for our attribute */ - assert(tab[i] == -1); + assert(tab[i] != -1); temp = translate_vertex_data_type(vinfo.attrib[i].emit) | (tab[i] << R300_DST_VEC_LOC_SHIFT); _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
