Fix indentation for incorrectly shifted statements
Signed-off-by: Zdenek Kabelac <zkabelac@redhat.com>
This commit is contained in:
parent
b419691e27
commit
a110637ef2
|
|
@ -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++)
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in New Issue