Lines Matching refs:newScreen
3370 NewCurrentScreen(DeviceIntPtr pDev, ScreenPtr newScreen, int x, int y) in NewCurrentScreen() argument
3384 pSprite->hotPhys.x += newScreen->x - screenInfo.screens[0]->x; in NewCurrentScreen()
3385 pSprite->hotPhys.y += newScreen->y - screenInfo.screens[0]->y; in NewCurrentScreen()
3386 if (newScreen != pSprite->screen) { in NewCurrentScreen()
3387 pSprite->screen = newScreen; in NewCurrentScreen()
3410 if (newScreen != pSprite->hotPhys.pScreen) in NewCurrentScreen()
3411 ConfineCursorToWindow(ptr, newScreen->root, TRUE, FALSE); in NewCurrentScreen()
3532 ScreenPtr newScreen; in ProcWarpPointer() local
3590 newScreen = dest->drawable.pScreen; in ProcWarpPointer()
3593 newScreen = pSprite->hotPhys.pScreen; in ProcWarpPointer()
3600 else if (x >= newScreen->width) in ProcWarpPointer()
3601 x = newScreen->width - 1; in ProcWarpPointer()
3604 else if (y >= newScreen->height) in ProcWarpPointer()
3605 y = newScreen->height - 1; in ProcWarpPointer()
3607 if (newScreen == pSprite->hotPhys.pScreen) { in ProcWarpPointer()
3618 (*newScreen->SetCursorPosition) (dev, newScreen, x, y, TRUE); in ProcWarpPointer()
3621 NewCurrentScreen(dev, newScreen, x, y); in ProcWarpPointer()
3623 if (*newScreen->CursorWarpedTo) in ProcWarpPointer()
3624 (*newScreen->CursorWarpedTo) (dev, newScreen, client, in ProcWarpPointer()