u_vbuf_mgr: fix uploading if format size is greater than stride
authorMarek Olšák <maraeo@gmail.com>
Sun, 19 Jun 2011 17:38:48 +0000 (19:38 +0200)
committerMarek Olšák <maraeo@gmail.com>
Sun, 19 Jun 2011 19:09:18 +0000 (21:09 +0200)
src/gallium/auxiliary/util/u_vbuf_mgr.c

index 0414952..fdfa9fc 100644 (file)
@@ -537,6 +537,11 @@ static void u_vbuf_upload_buffers(struct u_vbuf_mgr_priv *mgr,
          } else if (vb->stride) {
             first = vb->stride * min_index;
             size = vb->stride * count;
+
+            /* Unusual case when stride is smaller than the format size.
+             * XXX This won't work with interleaved arrays. */
+            if (mgr->ve->native_format_size[i] > vb->stride)
+               size += mgr->ve->native_format_size[i] - vb->stride;
          } else {
             first = 0;
             size = mgr->ve->native_format_size[i];