summaryrefslogtreecommitdiff
path: root/glx
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 /glx
parent0cd6709db5febbe7fbd073e429421fcd81041e08 (diff)
damage: choose less ambiguous function names
Diffstat (limited to 'glx')
-rw-r--r--glx/glxdri.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/glx/glxdri.c b/glx/glxdri.c
index eedb8ad8a..aa763deed 100644
--- a/glx/glxdri.c
+++ b/glx/glxdri.c
@@ -804,9 +804,9 @@ static void __glXReportDamage(__DRIdrawable *driDraw,
REGION_INIT(pDraw->pScreen, &region, (BoxPtr) rects, num_rects);
REGION_TRANSLATE(pScreen, &region, pDraw->x, pDraw->y);
- DamageRegionPending(pDraw, &region);
+ DamageRegionAppend(pDraw, &region);
/* This is wrong, this needs a seperate function. */
- DamageRegionSubmitted(pDraw);
+ DamageRegionProcessPending(pDraw);
REGION_UNINIT(pDraw->pScreen, &region);
__glXleaveServer(GL_FALSE);