Module: Mesa Branch: master Commit: 709ebabb26e20c171741338a3a9e9626ae87aa87 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=709ebabb26e20c171741338a3a9e9626ae87aa87
Author: Corbin Simpson <[email protected]> Date: Sat Mar 7 00:51:11 2009 -0800 r300-gallium: Emit vertex size. Not actually going to make a difference right now, but might as well. --- src/gallium/drivers/r300/r300_emit.c | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/src/gallium/drivers/r300/r300_emit.c b/src/gallium/drivers/r300/r300_emit.c index 4e82c32..f55093f 100644 --- a/src/gallium/drivers/r300/r300_emit.c +++ b/src/gallium/drivers/r300/r300_emit.c @@ -265,7 +265,9 @@ void r300_emit_vertex_format_state(struct r300_context* r300) CS_LOCALS(r300); int i; - BEGIN_CS(24); + BEGIN_CS(26); + OUT_CS_REG(R300_VAP_VTX_SIZE, r300->vertex_info.vinfo.size); + OUT_CS_REG_SEQ(R300_VAP_VTX_STATE_CNTL, 2); OUT_CS(r300->vertex_info.vinfo.hwfmt[0]); OUT_CS(r300->vertex_info.vinfo.hwfmt[1]); _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
