damage: internal functions start with a non-capital letter
This commit is contained in:
parent
1861250cd7
commit
ae6ca43410
|
@ -121,7 +121,7 @@ getDrawableDamageRef (DrawablePtr pDrawable)
|
||||||
dixLookupPrivateAddr(&(pWindow)->devPrivates, damageWinPrivateKey)
|
dixLookupPrivateAddr(&(pWindow)->devPrivates, damageWinPrivateKey)
|
||||||
|
|
||||||
static void
|
static void
|
||||||
DamageReportDamage (DamagePtr pDamage, RegionPtr pDamageRegion)
|
damageReportDamage (DamagePtr pDamage, RegionPtr pDamageRegion)
|
||||||
{
|
{
|
||||||
BoxRec tmpBox;
|
BoxRec tmpBox;
|
||||||
RegionRec tmpRegion;
|
RegionRec tmpRegion;
|
||||||
|
@ -309,7 +309,7 @@ damageRegionPending (DrawablePtr pDrawable, RegionPtr pRegion, Bool clip,
|
||||||
* be used for reporting after calling down, and skip the reporting
|
* be used for reporting after calling down, and skip the reporting
|
||||||
*/
|
*/
|
||||||
if (!pDamage->reportAfter) {
|
if (!pDamage->reportAfter) {
|
||||||
DamageReportDamage (pDamage, pDamageRegion);
|
damageReportDamage (pDamage, pDamageRegion);
|
||||||
} else {
|
} else {
|
||||||
REGION_UNION(pScreen, &pDamage->pendingDamage,
|
REGION_UNION(pScreen, &pDamage->pendingDamage,
|
||||||
&pDamage->pendingDamage, pDamageRegion);
|
&pDamage->pendingDamage, pDamageRegion);
|
||||||
|
@ -337,7 +337,7 @@ damageRegionSubmitted (DrawablePtr pDrawable)
|
||||||
for (; pDamage != NULL; pDamage = pDamage->pNext)
|
for (; pDamage != NULL; pDamage = pDamage->pNext)
|
||||||
{
|
{
|
||||||
if (pDamage->reportAfter) {
|
if (pDamage->reportAfter) {
|
||||||
DamageReportDamage (pDamage, &pDamage->pendingDamage);
|
damageReportDamage (pDamage, &pDamage->pendingDamage);
|
||||||
REGION_EMPTY (pScreen, &pDamage->pendingDamage);
|
REGION_EMPTY (pScreen, &pDamage->pendingDamage);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue