Lines Matching defs:pSprite
84 SpritePtr pSprite;
119 pSprite = pDev->spriteInfo->sprite;
120 x = pSprite->hotPhys.x;
121 y = pSprite->hotPhys.y;
142 if (src->drawable.pScreen != pSprite->hotPhys.pScreen ||
159 newScreen = pSprite->hotPhys.pScreen;
174 if (newScreen == pSprite->hotPhys.pScreen)
176 if (x < pSprite->physLimits.x1)
177 x = pSprite->physLimits.x1;
178 else if (x >= pSprite->physLimits.x2)
179 x = pSprite->physLimits.x2 - 1;
181 if (y < pSprite->physLimits.y1)
182 y = pSprite->physLimits.y1;
183 else if (y >= pSprite->physLimits.y2)
184 y = pSprite->physLimits.y2 - 1;
186 if (pSprite->hotShape)
187 ConfineToShape(pDev, pSprite->hotShape, &x, &y);