Module: Mesa Branch: master Commit: c56ecb68e75dedf0ca97dddf80fd1c318ab0986b URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=c56ecb68e75dedf0ca97dddf80fd1c318ab0986b
Author: Marek Olšák <[email protected]> Date: Fri Jul 29 16:33:50 2016 +0200 radeonsi: take scratch buffer and draw indirect memory usage into account Reviewed-by: Nicolai Hähnle <[email protected]> --- src/gallium/drivers/radeonsi/si_state_draw.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/gallium/drivers/radeonsi/si_state_draw.c b/src/gallium/drivers/radeonsi/si_state_draw.c index 30b644e..e4af4c7 100644 --- a/src/gallium/drivers/radeonsi/si_state_draw.c +++ b/src/gallium/drivers/radeonsi/si_state_draw.c @@ -989,6 +989,12 @@ void si_draw_vbo(struct pipe_context *ctx, const struct pipe_draw_info *info) if (sctx->b.flags) si_mark_atom_dirty(sctx, sctx->atoms.s.cache_flush); + /* Add buffer sizes for memory checking in need_cs_space. */ + if (sctx->emit_scratch_reloc && sctx->scratch_buffer) + r600_context_add_resource_size(ctx, &sctx->scratch_buffer->b.b); + if (info->indirect) + r600_context_add_resource_size(ctx, info->indirect); + si_need_cs_space(sctx); /* Emit states. */ _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
