From: Marek Olšák Date: Thu, 14 Sep 2017 13:40:45 +0000 (+0200) Subject: radeonsi: PIPE_BIND_SHARED should allow inter-process sharing X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7b616f7b714b31976f96845ac727504bcf4e4f65;p=mesa.git radeonsi: PIPE_BIND_SHARED should allow inter-process sharing Reviewed-by: Nicolai Hähnle --- diff --git a/src/gallium/drivers/radeon/r600_buffer_common.c b/src/gallium/drivers/radeon/r600_buffer_common.c index f35bc2c813b..7515f7d615b 100644 --- a/src/gallium/drivers/radeon/r600_buffer_common.c +++ b/src/gallium/drivers/radeon/r600_buffer_common.c @@ -169,11 +169,10 @@ void r600_init_resource_fields(struct r600_common_screen *rscreen, /* Only displayable single-sample textures can be shared between * processes. */ - if (res->b.b.target == PIPE_BUFFER || - res->b.b.nr_samples >= 2 || - (rtex->surface.micro_tile_mode != RADEON_MICRO_MODE_DISPLAY && - /* Raven doesn't use display micro mode for 32bpp, so check this: */ - !(res->b.b.bind & PIPE_BIND_SCANOUT))) + if (!(res->b.b.bind & (PIPE_BIND_SHARED | PIPE_BIND_SCANOUT)) && + (res->b.b.target == PIPE_BUFFER || + res->b.b.nr_samples >= 2 || + rtex->surface.micro_tile_mode != RADEON_MICRO_MODE_DISPLAY)) res->flags |= RADEON_FLAG_NO_INTERPROCESS_SHARING; /* If VRAM is just stolen system memory, allow both VRAM and