From dea5d429f7a52dfc945b17a57ef79744cc796b0e Mon Sep 17 00:00:00 2001 From: Chris Wilson Date: Thu, 3 May 2012 17:35:24 +0100 Subject: [PATCH] sna: Remove extraneous SCANOUT flags These are now fixed by obeying a minimum alignment restriction. Signed-off-by: Chris Wilson --- src/sna/sna_render.c | 2 +- src/sna/sna_tiling.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/sna/sna_render.c b/src/sna/sna_render.c index f2395551..3d0f9e94 100644 --- a/src/sna/sna_render.c +++ b/src/sna/sna_render.c @@ -1846,7 +1846,7 @@ sna_render_composite_redirect(struct sna *sna, width, height, bpp, kgem_choose_tiling(&sna->kgem, I915_TILING_X, width, height, bpp), - CREATE_SCANOUT | CREATE_TEMPORARY); + CREATE_TEMPORARY); if (!bo) return FALSE; diff --git a/src/sna/sna_tiling.c b/src/sna/sna_tiling.c index dcb4d1dc..d0e5afc5 100644 --- a/src/sna/sna_tiling.c +++ b/src/sna/sna_tiling.c @@ -384,7 +384,7 @@ sna_tiling_fill_boxes(struct sna *sna, tmp.drawable.width, tmp.drawable.height, dst->drawable.bitsPerPixel), - CREATE_SCANOUT | CREATE_TEMPORARY); + CREATE_TEMPORARY); if (bo) { int16_t dx = this.extents.x1; int16_t dy = this.extents.y1;