summaryrefslogtreecommitdiff
path: root/damageext
diff options
context:
space:
mode:
authorMaarten Maathuis <madman2003@gmail.com>2008-08-31 17:45:08 +0200
committerMaarten Maathuis <madman2003@gmail.com>2008-08-31 17:46:26 +0200
commitf4e9a1a98f97155de62908309e87c10487125926 (patch)
tree835931f1d83a3914d5b73d41edfb228c4eb2d83e /damageext
parent0cd6709db5febbe7fbd073e429421fcd81041e08 (diff)
damage: choose less ambiguous function names
Diffstat (limited to 'damageext')
-rwxr-xr-xdamageext/damageext.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/damageext/damageext.c b/damageext/damageext.c
index fdf31f323..8fa1c5314 100755
--- a/damageext/damageext.c
+++ b/damageext/damageext.c
@@ -233,7 +233,7 @@ ProcDamageCreate (ClientPtr client)
if (pDrawable->type == DRAWABLE_WINDOW)
{
pRegion = &((WindowPtr) pDrawable)->borderClip;
- DamageRegionPending(pDrawable, pRegion);
+ DamageRegionAppend(pDrawable, pRegion);
}
return (client->noClientException);
@@ -303,7 +303,7 @@ ProcDamageAdd (ClientPtr client)
* screen coordinates like damage expects.
*/
REGION_TRANSLATE(pScreen, pRegion, pDrawable->x, pDrawable->y);
- DamageRegionPending(pDrawable, pRegion);
+ DamageRegionAppend(pDrawable, pRegion);
REGION_TRANSLATE(pScreen, pRegion, -pDrawable->x, -pDrawable->y);
return (client->noClientException);