diff options
author | Marek Olšák <[email protected]> | 2017-07-29 01:19:19 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2017-08-01 17:06:38 +0200 |
commit | 39608761cd20cbabb975a5d899dfe7c0dd3268b7 (patch) | |
tree | 57ee4c10e9c44ed8aceec5bebcc5f6f8097f61f6 /src/gallium/state_trackers | |
parent | cb8ecb2f36f8ac08215e4179b24fe2a03282c858 (diff) |
st/dri: don't set PIPE_BIND_SHARED for privately-allocated renderbuffers
which are MSAA and depth/stencil buffers.
Reviewed-by: Eric Anholt <[email protected]>
Diffstat (limited to 'src/gallium/state_trackers')
-rw-r--r-- | src/gallium/state_trackers/dri/dri2.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/gallium/state_trackers/dri/dri2.c b/src/gallium/state_trackers/dri/dri2.c index 0cbc76f7f8b..e4e2a534fd1 100644 --- a/src/gallium/state_trackers/dri/dri2.c +++ b/src/gallium/state_trackers/dri/dri2.c @@ -732,7 +732,8 @@ dri2_allocate_textures(struct dri_context *ctx, if (drawable->textures[statt]) { templ.format = drawable->textures[statt]->format; - templ.bind = drawable->textures[statt]->bind & ~PIPE_BIND_SCANOUT; + templ.bind = drawable->textures[statt]->bind & + ~(PIPE_BIND_SCANOUT | PIPE_BIND_SHARED); templ.nr_samples = drawable->stvis.samples; /* Try to reuse the resource. @@ -781,7 +782,7 @@ dri2_allocate_textures(struct dri_context *ctx, if (format) { templ.format = format; - templ.bind = bind; + templ.bind = bind & ~PIPE_BIND_SHARED; if (drawable->stvis.samples > 1) { templ.nr_samples = drawable->stvis.samples; |