diff options
author | Rob Clark <[email protected]> | 2014-05-17 13:50:10 -0400 |
---|---|---|
committer | Rob Clark <[email protected]> | 2014-05-18 15:22:25 -0400 |
commit | f7debd4a3e672e684fc40b3c440f0c4b6301f790 (patch) | |
tree | aaf0fb9393fd0799292d16be6c0360a3c0233f69 /src/gallium | |
parent | 5646319f25c7880b3706bb7590e24c84fd8de0fc (diff) |
freedreno: fix index buffer offset
Signed-off-by: Rob Clark <[email protected]>
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/drivers/freedreno/freedreno_draw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/freedreno/freedreno_draw.c b/src/gallium/drivers/freedreno/freedreno_draw.c index 1289bb4b8f2..e3c8cc8e5a0 100644 --- a/src/gallium/drivers/freedreno/freedreno_draw.c +++ b/src/gallium/drivers/freedreno/freedreno_draw.c @@ -71,7 +71,7 @@ fd_draw_emit(struct fd_context *ctx, struct fd_ringbuffer *ring, idx_bo = fd_resource(idx->buffer)->bo; idx_type = size2indextype(idx->index_size); idx_size = idx->index_size * info->count; - idx_offset = idx->offset; + idx_offset = idx->offset + (info->start * idx->index_size); src_sel = DI_SRC_SEL_DMA; } else { idx_bo = NULL; |