From: José Fonseca Date: Fri, 1 Jul 2011 16:06:58 +0000 (+0100) Subject: svga: Use the correct element size. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1c59ea959215271577d888a721536ac86c6f06f5;p=mesa.git svga: Use the correct element size. Instead of always using the first element's size. This fixes flashing floor on CINEBENCH R10. --- diff --git a/src/gallium/drivers/svga/svga_pipe_draw.c b/src/gallium/drivers/svga/svga_pipe_draw.c index 0b4d41bb807..d53edcb23c5 100644 --- a/src/gallium/drivers/svga/svga_pipe_draw.c +++ b/src/gallium/drivers/svga/svga_pipe_draw.c @@ -87,7 +87,7 @@ svga_user_buffer_range(struct svga_context *svga, struct svga_buffer *buffer = svga_buffer(vb->buffer); unsigned first, size; unsigned instance_div = ve[i].instance_divisor; - unsigned elemSize = util_format_get_blocksize(ve->src_format); + unsigned elemSize = util_format_get_blocksize(ve[i].src_format); svga->dirty |= SVGA_NEW_VBUFFER;