From e62caf576e1c521d4d80c359f040a9978596e27d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Ol=C5=A1=C3=A1k?= Date: Fri, 29 Jul 2016 16:33:50 +0200 Subject: radeonsi: take compute shader and dispatch indirect memory usage into account MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Reviewed-by: Nicolai Hähnle --- src/gallium/drivers/radeonsi/si_compute.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/gallium/drivers/radeonsi/si_compute.c') diff --git a/src/gallium/drivers/radeonsi/si_compute.c b/src/gallium/drivers/radeonsi/si_compute.c index e75f6bd..c3e8a35 100644 --- a/src/gallium/drivers/radeonsi/si_compute.c +++ b/src/gallium/drivers/radeonsi/si_compute.c @@ -462,6 +462,12 @@ static void si_launch_grid( si_decompress_compute_textures(sctx); + /* Add buffer sizes for memory checking in need_cs_space. */ + r600_context_add_resource_size(ctx, &program->shader.bo->b.b); + if (info->indirect) + r600_context_add_resource_size(ctx, info->indirect); + /* TODO: add the scratch buffer */ + si_need_cs_space(sctx); if (!sctx->cs_shader_state.initialized) -- cgit v1.1