Lines Matching refs:pCurs

26 xf86RecolorCursor_locked(xf86CursorScreenPtr ScreenPriv, CursorPtr pCurs);
179 xf86ScreenSetCursor(ScreenPtr pScreen, CursorPtr pCurs, int x, int y) in xf86ScreenSetCursor() argument
189 return (pCurs == NullCursor); in xf86ScreenSetCursor()
194 if (pCurs == NullCursor) { in xf86ScreenSetCursor()
208 dixLookupScreenPrivate(&pCurs->devPrivates, CursorScreenKey, pScreen); in xf86ScreenSetCursor()
213 if (!pCurs->bits->argb || !xf86DriverHasLoadCursorARGB(infoPtr)) in xf86ScreenSetCursor()
215 bits = (*infoPtr->RealizeCursor) (infoPtr, pCurs); in xf86ScreenSetCursor()
216 dixSetScreenPrivate(&pCurs->devPrivates, CursorScreenKey, pScreen, in xf86ScreenSetCursor()
223 if (pCurs->bits->argb && xf86DriverHasLoadCursorARGB(infoPtr)) { in xf86ScreenSetCursor()
224 if (!xf86DriverLoadCursorARGB (infoPtr, pCurs)) in xf86ScreenSetCursor()
231 xf86RecolorCursor_locked (ScreenPriv, pCurs); in xf86ScreenSetCursor()
239 xf86SetCursor(ScreenPtr pScreen, CursorPtr pCurs, int x, int y) in xf86SetCursor() argument
252 if (!xf86ScreenSetCursor(pScreen, pCurs, x, y)) in xf86SetCursor()
260 if (!xf86ScreenSetCursor(pSlave, pCurs, x, y)) { in xf86SetCursor()
343 xf86RecolorCursor_locked(xf86CursorScreenPtr ScreenPriv, CursorPtr pCurs) in xf86RecolorCursor_locked() argument
349 if (pCurs->bits->argb) in xf86RecolorCursor_locked()
359 sourceColor.red = pCurs->foreRed; in xf86RecolorCursor_locked()
360 sourceColor.green = pCurs->foreGreen; in xf86RecolorCursor_locked()
361 sourceColor.blue = pCurs->foreBlue; in xf86RecolorCursor_locked()
363 maskColor.red = pCurs->backRed; in xf86RecolorCursor_locked()
364 maskColor.green = pCurs->backGreen; in xf86RecolorCursor_locked()
365 maskColor.blue = pCurs->backBlue; in xf86RecolorCursor_locked()
374 (pCurs->backBlue >> 8) | in xf86RecolorCursor_locked()
375 ((pCurs->backGreen >> 8) << 8) | in xf86RecolorCursor_locked()
376 ((pCurs->backRed >> 8) << 16), in xf86RecolorCursor_locked()
377 (pCurs->foreBlue >> 8) | in xf86RecolorCursor_locked()
378 ((pCurs->foreGreen >> 8) << 8) | in xf86RecolorCursor_locked()
379 ((pCurs->foreRed >> 8) << 16) in xf86RecolorCursor_locked()
385 xf86RecolorCursor(ScreenPtr pScreen, CursorPtr pCurs, Bool displayed) in xf86RecolorCursor() argument
392 xf86RecolorCursor_locked (ScreenPriv, pCurs); in xf86RecolorCursor()
398 RealizeCursorInterleave0(xf86CursorInfoPtr infoPtr, CursorPtr pCurs) in RealizeCursorInterleave0() argument
413 if (pCurs == NullCursor) { in RealizeCursorInterleave0()
424 SrcPitch = (pCurs->bits->width + (BITMAP_SCANLINE_PAD - 1)) >> in RealizeCursorInterleave0()
431 SrcS = (SCANLINE *) pCurs->bits->source; in RealizeCursorInterleave0()
432 SrcM = (SCANLINE *) pCurs->bits->mask; in RealizeCursorInterleave0()
445 for (y = pCurs->bits->height, pSrc = DstS, pMsk = DstM; in RealizeCursorInterleave0()
456 for (y = pCurs->bits->height, pSrc = DstS, pMsk = DstM; in RealizeCursorInterleave0()
500 for (y = pCurs->bits->height, pSrc = DstS, pMsk = DstM; in RealizeCursorInterleave0()
513 RealizeCursorInterleave1(xf86CursorInfoPtr infoPtr, CursorPtr pCurs) in RealizeCursorInterleave1() argument
522 if (!(mem2 = RealizeCursorInterleave0(infoPtr, pCurs))) in RealizeCursorInterleave1()
556 RealizeCursorInterleave8(xf86CursorInfoPtr infoPtr, CursorPtr pCurs) in RealizeCursorInterleave8() argument
565 if (!(mem2 = RealizeCursorInterleave0(infoPtr, pCurs))) in RealizeCursorInterleave8()
591 RealizeCursorInterleave16(xf86CursorInfoPtr infoPtr, CursorPtr pCurs) in RealizeCursorInterleave16() argument
600 if (!(mem2 = RealizeCursorInterleave0(infoPtr, pCurs))) in RealizeCursorInterleave16()
626 RealizeCursorInterleave32(xf86CursorInfoPtr infoPtr, CursorPtr pCurs) in RealizeCursorInterleave32() argument
635 if (!(mem2 = RealizeCursorInterleave0(infoPtr, pCurs))) in RealizeCursorInterleave32()
661 RealizeCursorInterleave64(xf86CursorInfoPtr infoPtr, CursorPtr pCurs) in RealizeCursorInterleave64() argument
670 if (!(mem2 = RealizeCursorInterleave0(infoPtr, pCurs))) in RealizeCursorInterleave64()