diff options
author | Marek Olšák <[email protected]> | 2015-07-07 18:28:31 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2015-07-07 21:36:50 +0200 |
commit | 6611f65047575054a38ce83ebfe0331e39e1774f (patch) | |
tree | 1a4addcac49f0f83468b9410c9a3f1cb2300ff04 /src/gallium/state_trackers/dri/dri2.c | |
parent | 10cff5e1ae55406799f4b0ad6b327d4c45dbca11 (diff) |
st/dri: don't set PIPE_BIND_SCANOUT for MSAA surfaces
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=91231
Reviewed-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/gallium/state_trackers/dri/dri2.c')
-rw-r--r-- | src/gallium/state_trackers/dri/dri2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/state_trackers/dri/dri2.c b/src/gallium/state_trackers/dri/dri2.c index 8d93f786433..1eda036750e 100644 --- a/src/gallium/state_trackers/dri/dri2.c +++ b/src/gallium/state_trackers/dri/dri2.c @@ -554,7 +554,7 @@ dri2_allocate_textures(struct dri_context *ctx, if (drawable->textures[statt]) { templ.format = drawable->textures[statt]->format; - templ.bind = drawable->textures[statt]->bind; + templ.bind = drawable->textures[statt]->bind & ~PIPE_BIND_SCANOUT; templ.nr_samples = drawable->stvis.samples; /* Try to reuse the resource. |