summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIlia Mirkin <imirkin@alum.mit.edu>2015-05-25 14:06:01 -0400
committerEmil Velikov <emil.l.velikov@gmail.com>2015-05-27 11:45:18 +0100
commitcb0c057a3135b4e6c0b6921df7bc7b29dea3315d (patch)
tree2e1c042cb9fa48ce6e7f3a9764db5164cc69ca4a
parent60294f8c39191374631b574b97ebe46b6afe2a44 (diff)
downloadmesa-cb0c057a3135b4e6c0b6921df7bc7b29dea3315d.tar.gz
nv30/draw: draw expects constbuf size in bytes, not vec4 units
This fixes glxgears with NV30_SWTNL=1 forced on. Probably fixes a bunch of other situations where we fall back to the swtnl path. Signed-off-by: Ilia Mirkin <imirkin@alum.mit.edu> Cc: "10.5 10.6" <mesa-stable@lists.freedesktop.org> (cherry picked from commit 147816375d22a653176ab28ed650fa811ceea83f)
-rw-r--r--src/gallium/drivers/nouveau/nv30/nv30_draw.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/nouveau/nv30/nv30_draw.c b/src/gallium/drivers/nouveau/nv30/nv30_draw.c
index 145a78e0280..783ffe80ead 100644
--- a/src/gallium/drivers/nouveau/nv30/nv30_draw.c
+++ b/src/gallium/drivers/nouveau/nv30/nv30_draw.c
@@ -399,7 +399,7 @@ nv30_render_vbo(struct pipe_context *pipe, const struct pipe_draw_info *info)
if (nv30->vertprog.constbuf) {
void *map = nv04_resource(nv30->vertprog.constbuf)->data;
draw_set_mapped_constant_buffer(draw, PIPE_SHADER_VERTEX, 0,
- map, nv30->vertprog.constbuf_nr);
+ map, nv30->vertprog.constbuf_nr * 16);
} else {
draw_set_mapped_constant_buffer(draw, PIPE_SHADER_VERTEX, 0, NULL, 0);
}