From: Marek Olšák Date: Mon, 19 Feb 2018 16:55:34 +0000 (+0100) Subject: radeonsi: fix regression from 32-bit pointers on CI X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f78fe98fff672b2a40d64d71e28f37f4a2983589;p=mesa.git radeonsi: fix regression from 32-bit pointers on CI Tested-by: Michel Dänzer --- diff --git a/src/gallium/drivers/radeonsi/si_pipe.c b/src/gallium/drivers/radeonsi/si_pipe.c index f07ec50ab7b..ec543f2c0ee 100644 --- a/src/gallium/drivers/radeonsi/si_pipe.c +++ b/src/gallium/drivers/radeonsi/si_pipe.c @@ -357,7 +357,7 @@ static struct pipe_context *si_create_context(struct pipe_screen *screen, if (sctx->b.chip_class == CIK) { sctx->null_const_buf.buffer = si_aligned_buffer_create(screen, - R600_RESOURCE_FLAG_UNMAPPABLE, + R600_RESOURCE_FLAG_32BIT, PIPE_USAGE_DEFAULT, 16, sctx->screen->info.tcc_cache_line_size); if (!sctx->null_const_buf.buffer)