From: Marek Olšák Date: Thu, 10 Sep 2015 15:42:31 +0000 (+0200) Subject: radeonsi: handle index buffer alloc failures X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=29dff6f67656c8e6e09249cc76b6efa0c03353a7;p=mesa.git radeonsi: handle index buffer alloc failures Cc: 11.0 Acked-by: Christian König Reviewed-by: Michel Dänzer --- diff --git a/src/gallium/drivers/radeonsi/si_state_draw.c b/src/gallium/drivers/radeonsi/si_state_draw.c index 8cb98d7317c..b4c59f805e5 100644 --- a/src/gallium/drivers/radeonsi/si_state_draw.c +++ b/src/gallium/drivers/radeonsi/si_state_draw.c @@ -782,6 +782,10 @@ void si_draw_vbo(struct pipe_context *ctx, const struct pipe_draw_info *info) u_upload_alloc(sctx->b.uploader, start_offset, count * 2, &out_offset, &out_buffer, &ptr); + if (!out_buffer) { + pipe_resource_reference(&ib.buffer, NULL); + return; + } util_shorten_ubyte_elts_to_userptr(&sctx->b.b, &ib, 0, ib.offset + start_offset, @@ -802,6 +806,8 @@ void si_draw_vbo(struct pipe_context *ctx, const struct pipe_draw_info *info) u_upload_data(sctx->b.uploader, start_offset, count * ib.index_size, (char*)ib.user_buffer + start_offset, &ib.offset, &ib.buffer); + if (!ib.buffer) + return; /* info->start will be added by the drawing code */ ib.offset -= start_offset; }