From ecf66d49a103b87d07da8b7d0f9a3629681e6643 Mon Sep 17 00:00:00 2001 From: marha Date: Thu, 29 Mar 2012 11:47:19 +0200 Subject: xserver fontconfig mesa git update 29 Mar 2012 --- xorg-server/test/xi2/protocol-common.c | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'xorg-server/test/xi2/protocol-common.c') diff --git a/xorg-server/test/xi2/protocol-common.c b/xorg-server/test/xi2/protocol-common.c index 32c056797..e2b0b8ba3 100644 --- a/xorg-server/test/xi2/protocol-common.c +++ b/xorg-server/test/xi2/protocol-common.c @@ -30,6 +30,7 @@ #include "exglobals.h" #include "xkbsrv.h" /* for XkbInitPrivates */ #include "xserver-properties.h" +#include "syncsrv.h" #include #include "protocol-common.h" @@ -38,6 +39,7 @@ struct devices devices; ScreenRec screen; WindowRec root; WindowRec window; +static ClientRec server_client; void *userdata; @@ -214,6 +216,11 @@ device_cursor_init(DeviceIntPtr dev, ScreenPtr screen) return TRUE; } +static void +device_cursor_cleanup(DeviceIntPtr dev, ScreenPtr screen) +{ +} + static Bool set_cursor_pos(DeviceIntPtr dev, ScreenPtr screen, int x, int y, Bool event) { @@ -231,6 +238,7 @@ init_simple(void) screen.width = 640; screen.height = 480; screen.DeviceCursorInitialize = device_cursor_init; + screen.DeviceCursorCleanup = device_cursor_cleanup; screen.SetCursorPosition = set_cursor_pos; dixResetPrivates(); @@ -245,6 +253,12 @@ init_simple(void) init_window(&root, NULL, ROOT_WINDOW_ID); init_window(&window, &root, CLIENT_WINDOW_ID); + serverClient = &server_client; + InitClient(serverClient, 0, (pointer) NULL); + if (!InitClientResources(serverClient)) /* for root resources */ + FatalError("couldn't init server resources"); + SyncExtensionInit(); + devices = init_devices(); } -- cgit v1.2.3