summaryrefslogtreecommitdiff
path: root/hw/dmx
diff options
context:
space:
mode:
authorPeter Hutterer <peter@cs.unisa.edu.au>2008-06-03 22:25:33 +0930
committerPeter Hutterer <peter@cs.unisa.edu.au>2008-06-05 16:13:44 +0930
commit75eb635e3543fcb731331d01f50e62b696967667 (patch)
tree87d9643a4b636570d9ae13ea822a1469b74df51d /hw/dmx
parent3ff2f3a00ef3c484d1d53569b6cbc1f25dc6bd35 (diff)
dmx: add stubs for DeviceCursorInitialize, DeviceCursorCleanup
Diffstat (limited to 'hw/dmx')
-rw-r--r--hw/dmx/dmxcursor.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/hw/dmx/dmxcursor.c b/hw/dmx/dmxcursor.c
index 3dcbc3364..2a596a17b 100644
--- a/hw/dmx/dmxcursor.c
+++ b/hw/dmx/dmxcursor.c
@@ -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
};