mirror of
https://github.com/X11Libre/xserver.git
synced 2026-04-14 17:18:09 +00:00
dmx: add stubs for DeviceCursorInitialize, DeviceCursorCleanup
This commit is contained in:
@@ -969,10 +969,21 @@ void dmxCheckCursor(void)
|
||||
DMXDBG2(" leave dmxCheckCursor %d %d\n", x, y);
|
||||
}
|
||||
|
||||
static Bool dmxDeviceCursorInitialize(DeviceIntPtr pDev, ScreenPtr pScr)
|
||||
{
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
static void dmxDeviceCursorCleanup(DeviceIntPtr pDev, ScreenPtr pScr)
|
||||
{
|
||||
}
|
||||
|
||||
miPointerSpriteFuncRec dmxPointerSpriteFuncs =
|
||||
{
|
||||
dmxRealizeCursor,
|
||||
dmxUnrealizeCursor,
|
||||
dmxSetCursor,
|
||||
dmxMoveCursor,
|
||||
dmxDeviceCursorInitialize,
|
||||
dmxDeviceCursorCleanup
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user