From 3d4383f1399f9bd3cdaea794b0fa9be87f3d80f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Ol=C5=A1=C3=A1k?= Date: Wed, 21 Feb 2018 23:33:38 +0100 Subject: [PATCH] radeonsi: fix vertex buffer address computation with full 64-bit addresses (cherry picked from commit 2a47660754ba49d5998929550f639677506c4515) --- src/gallium/drivers/radeonsi/si_descriptors.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/gallium/drivers/radeonsi/si_descriptors.c b/src/gallium/drivers/radeonsi/si_descriptors.c index 17115e1355a..e484ab338a7 100644 --- a/src/gallium/drivers/radeonsi/si_descriptors.c +++ b/src/gallium/drivers/radeonsi/si_descriptors.c @@ -1066,9 +1066,9 @@ bool si_upload_vertex_buffer_descriptors(struct si_context *sctx) continue; } - int offset = (int)vb->buffer_offset + (int)velems->src_offset[i]; - int64_t va = (int64_t)rbuffer->gpu_address + offset; - assert(va > 0); + int64_t offset = (int64_t)((int)vb->buffer_offset) + + velems->src_offset[i]; + uint64_t va = rbuffer->gpu_address + offset; int64_t num_records = (int64_t)rbuffer->b.b.width0 - offset; if (sctx->b.chip_class != VI && vb->stride) {