diff options
author | Eamon Walsh <ewalsh@tycho.nsa.gov> | 2007-08-14 13:09:38 -0400 |
---|---|---|
committer | Eamon Walsh <ewalsh@moss-charon.epoch.ncsc.mil> | 2007-08-14 13:09:38 -0400 |
commit | 42d6112ec21949a336ee8b34469f2695273ee2d6 (patch) | |
tree | 49b2123bcdee1062c047b65718d8844c1049ca20 /mi/midispcur.c | |
parent | 9a183d7ba50e31afa133cc03aee7991517a283ea (diff) |
xace: add hooks + new access codes: core protocol GC requests
Diffstat (limited to 'mi/midispcur.c')
-rw-r--r-- | mi/midispcur.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/mi/midispcur.c b/mi/midispcur.c index de009cbaf..ab1083789 100644 --- a/mi/midispcur.c +++ b/mi/midispcur.c @@ -450,7 +450,8 @@ miDCMakeGC( gcvals[0] = IncludeInferiors; gcvals[1] = FALSE; pGC = CreateGC((DrawablePtr)pWin, - GCSubwindowMode|GCGraphicsExposures, gcvals, &status); + GCSubwindowMode|GCGraphicsExposures, gcvals, &status, + (XID)0, serverClient); if (pGC && pWin->drawable.pScreen->DrawGuarantee) (*pWin->drawable.pScreen->DrawGuarantee) (pWin, pGC, GuaranteeVisBack); *ppGC = pGC; @@ -746,7 +747,7 @@ miDCMoveCursor (pScreen, pCursor, x, y, w, h, dx, dy, source, mask) if (!pScreenPriv->pMoveGC) { pScreenPriv->pMoveGC = CreateGC ((DrawablePtr)pTemp, - GCGraphicsExposures, &gcval, &status); + GCGraphicsExposures, &gcval, &status, (XID)0, serverClient); if (!pScreenPriv->pMoveGC) return FALSE; } @@ -782,14 +783,14 @@ miDCMoveCursor (pScreen, pCursor, x, y, w, h, dx, dy, source, mask) if (!pScreenPriv->pPixSourceGC) { pScreenPriv->pPixSourceGC = CreateGC ((DrawablePtr)pTemp, - GCGraphicsExposures, &gcval, &status); + GCGraphicsExposures, &gcval, &status, (XID)0, serverClient); if (!pScreenPriv->pPixSourceGC) return FALSE; } if (!pScreenPriv->pPixMaskGC) { pScreenPriv->pPixMaskGC = CreateGC ((DrawablePtr)pTemp, - GCGraphicsExposures, &gcval, &status); + GCGraphicsExposures, &gcval, &status, (XID)0, serverClient); if (!pScreenPriv->pPixMaskGC) return FALSE; } |