From fee2883bd78106a0d8dc3c081d53c8983ab6f07f Mon Sep 17 00:00:00 2001 From: =?utf8?q?Marek=20Ol=C5=A1=C3=A1k?= Date: Tue, 27 Jun 2017 19:21:29 +0200 Subject: [PATCH] gallium/radeon: ignore PIPE_BIND_SHARED for buffers MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit BO exports can't be predicted this way. Reviewed-by: Nicolai Hähnle --- src/gallium/drivers/radeon/r600_buffer_common.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/gallium/drivers/radeon/r600_buffer_common.c b/src/gallium/drivers/radeon/r600_buffer_common.c index 5336f55cb57..342695c1387 100644 --- a/src/gallium/drivers/radeon/r600_buffer_common.c +++ b/src/gallium/drivers/radeon/r600_buffer_common.c @@ -610,8 +610,6 @@ struct pipe_resource *r600_buffer_create(struct pipe_screen *screen, r600_init_resource_fields(rscreen, rbuffer, templ->width0, alignment); - if (templ->bind & PIPE_BIND_SHARED) - rbuffer->flags |= RADEON_FLAG_HANDLE; if (templ->flags & PIPE_RESOURCE_FLAG_SPARSE) rbuffer->flags |= RADEON_FLAG_SPARSE; -- 2.30.2