From: Marek Olšák <marek.ol...@amd.com> --- src/gallium/drivers/radeonsi/si_hw_context.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/gallium/drivers/radeonsi/si_hw_context.c b/src/gallium/drivers/radeonsi/si_hw_context.c index e6018f3..5ab20d8 100644 --- a/src/gallium/drivers/radeonsi/si_hw_context.c +++ b/src/gallium/drivers/radeonsi/si_hw_context.c @@ -43,13 +43,13 @@ static unsigned si_ce_needed_cs_space(void) unsigned space = 0; space += si_descriptor_list_cs_space(SI_NUM_CONST_BUFFERS, 4); - space += si_descriptor_list_cs_space(SI_NUM_RW_BUFFERS, 4); space += si_descriptor_list_cs_space(SI_NUM_SHADER_BUFFERS, 4); space += si_descriptor_list_cs_space(SI_NUM_SAMPLERS, 16); space += si_descriptor_list_cs_space(SI_NUM_IMAGES, 8); - space *= SI_NUM_SHADERS; + space += si_descriptor_list_cs_space(SI_NUM_RW_BUFFERS, 4); + /* Increment CE counter packet */ space += 2; -- 2.5.0 _______________________________________________ mesa-dev mailing list mesa-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/mesa-dev