From: John Kåre Alsaker Date: Wed, 12 Dec 2012 20:00:58 +0000 (+0100) Subject: llvmpipe: Fix creation of shared and scanout textures. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=65aa1a194d703664d2f68e2e6fd69029298ae25a;p=mesa.git llvmpipe: Fix creation of shared and scanout textures. NOTE: This is a candidate for the stable branches. Signed-off-by: José Fonseca --- diff --git a/src/gallium/drivers/llvmpipe/lp_texture.c b/src/gallium/drivers/llvmpipe/lp_texture.c index d55985ba170..f34882808a4 100644 --- a/src/gallium/drivers/llvmpipe/lp_texture.c +++ b/src/gallium/drivers/llvmpipe/lp_texture.c @@ -295,7 +295,9 @@ llvmpipe_resource_create(struct pipe_screen *_screen, /* assert(lpr->base.bind); */ if (resource_is_texture(&lpr->base)) { - if (lpr->base.bind & PIPE_BIND_DISPLAY_TARGET) { + if (lpr->base.bind & (PIPE_BIND_DISPLAY_TARGET | + PIPE_BIND_SCANOUT | + PIPE_BIND_SHARED)) { /* displayable surface */ if (!llvmpipe_displaytarget_layout(screen, lpr)) goto fail;