summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Anholt <eric@anholt.net>2009-10-06 19:00:41 -0700
committerEric Anholt <eric@anholt.net>2009-10-08 15:34:10 -0700
commitb6262dcd2754f7e87f27979dcad145133ee3b945 (patch)
tree05acbb4c7bc47c991c0ace774aaa95faea4d6b43
parentfdcfeb822d15cbfe6fccceab002b75458dca3264 (diff)
Rename pGC to gc.
-rw-r--r--src/i830_dri.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/i830_dri.c b/src/i830_dri.c
index 0cc36eab..1e9c22ab 100644
--- a/src/i830_dri.c
+++ b/src/i830_dri.c
@@ -286,13 +286,13 @@ I830DRI2CopyRegion(DrawablePtr drawable, RegionPtr pRegion,
DrawablePtr dst = (dstPrivate->attachment == DRI2BufferFrontLeft)
? drawable : &dstPrivate->pixmap->drawable;
RegionPtr pCopyClip;
- GCPtr pGC;
+ GCPtr gc;
- pGC = GetScratchGC(drawable->depth, pScreen);
+ gc = GetScratchGC(drawable->depth, pScreen);
pCopyClip = REGION_CREATE(pScreen, NULL, 0);
REGION_COPY(pScreen, pCopyClip, pRegion);
- (*pGC->funcs->ChangeClip) (pGC, CT_REGION, pCopyClip, 0);
- ValidateGC(dst, pGC);
+ (*gc->funcs->ChangeClip) (gc, CT_REGION, pCopyClip, 0);
+ ValidateGC(dst, gc);
/* Wait for the scanline to be outside the region to be copied */
if (pixmap_is_scanout(get_drawable_pixmap(dst))
@@ -303,7 +303,7 @@ I830DRI2CopyRegion(DrawablePtr drawable, RegionPtr pRegion,
int pipe = -1, event, load_scan_lines_pipe;
xf86CrtcPtr crtc;
- box = REGION_EXTENTS(unused, pGC->pCompositeClip);
+ box = REGION_EXTENTS(unused, gc->pCompositeClip);
crtc = i830_covering_crtc(scrn, box, NULL, &crtcbox);
/* Make sure the CRTC is valid and this is the real front buffer */
@@ -339,12 +339,12 @@ I830DRI2CopyRegion(DrawablePtr drawable, RegionPtr pRegion,
}
}
- (*pGC->ops->CopyArea) (src, dst,
- pGC,
+ (*gc->ops->CopyArea) (src, dst,
+ gc,
0, 0,
drawable->width, drawable->height,
0, 0);
- FreeScratchGC(pGC);
+ FreeScratchGC(gc);
/* Emit a flush of the rendering cache, or on the 965 and beyond
* rendering results may not hit the framebuffer until significantly