Fix indentation for incorrectly shifted statements

Signed-off-by: Zdenek Kabelac <zkabelac@redhat.com>
This commit is contained in:
Zdenek Kabelac 2013-11-25 09:09:30 +01:00 committed by Chris Wilson
parent b419691e27
commit a110637ef2
2 changed files with 5 additions and 5 deletions

View File

@ -132,8 +132,8 @@ static void I810LoadCursorARGB (ScrnInfoPtr pScrn, CursorPtr pCurs)
{
for (x = 0; x < w; x++)
*pcurs++ = *image++;
for (; x < 64; x++)
*pcurs++ = 0;
for (; x < 64; x++)
*pcurs++ = 0;
}
for (; y < 64; y++)

View File

@ -2355,9 +2355,9 @@ fill:
hint |= PREFER_GPU;
if (dst->pCompositeClip->data == NULL && (width | height))
hint |= IGNORE_CPU;
if (width == tmp->dst.pixmap->drawable.width &&
height == tmp->dst.pixmap->drawable.height)
hint |= REPLACES;
if (width == tmp->dst.pixmap->drawable.width &&
height == tmp->dst.pixmap->drawable.height)
hint |= REPLACES;
}
tmp->dst.bo = sna_drawable_use_bo(dst->pDrawable, hint,
&dst_box, &tmp->damage);