1 | /*
|
---|
2 | xfIOKit.h
|
---|
3 |
|
---|
4 | IOKit specific functions and definitions
|
---|
5 | */
|
---|
6 | /*
|
---|
7 | * Copyright (c) 2001-2002 Torrey T. Lyons. All Rights Reserved.
|
---|
8 | *
|
---|
9 | * Permission is hereby granted, free of charge, to any person obtaining a
|
---|
10 | * copy of this software and associated documentation files (the "Software"),
|
---|
11 | * to deal in the Software without restriction, including without limitation
|
---|
12 | * the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
---|
13 | * and/or sell copies of the Software, and to permit persons to whom the
|
---|
14 | * Software is furnished to do so, subject to the following conditions:
|
---|
15 | *
|
---|
16 | * The above copyright notice and this permission notice shall be included in
|
---|
17 | * all copies or substantial portions of the Software.
|
---|
18 | *
|
---|
19 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
---|
20 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
---|
21 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
---|
22 | * THE ABOVE LISTED COPYRIGHT HOLDER(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
|
---|
23 | * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
---|
24 | * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
---|
25 | * DEALINGS IN THE SOFTWARE.
|
---|
26 | *
|
---|
27 | * Except as contained in this notice, the name(s) of the above copyright
|
---|
28 | * holders shall not be used in advertising or otherwise to promote the sale,
|
---|
29 | * use or other dealings in this Software without prior written authorization.
|
---|
30 | */
|
---|
31 | /* $XFree86: xc/programs/Xserver/hw/darwin/xfIOKit.h,v 1.10 2003/03/15 18:02:08 torrey Exp $ */
|
---|
32 |
|
---|
33 | #ifndef _XFIOKIT_H
|
---|
34 | #define _XFIOKIT_H
|
---|
35 |
|
---|
36 | #include <pthread.h>
|
---|
37 | #include <IOKit/graphics/IOFramebufferShared.h>
|
---|
38 | #include <X11/Xproto.h>
|
---|
39 | #include "screenint.h"
|
---|
40 | #include "darwin.h"
|
---|
41 |
|
---|
42 | typedef struct {
|
---|
43 | io_connect_t fbService;
|
---|
44 | StdFBShmem_t *cursorShmem;
|
---|
45 | unsigned char *framebuffer;
|
---|
46 | unsigned char *shadowPtr;
|
---|
47 | } XFIOKitScreenRec, *XFIOKitScreenPtr;
|
---|
48 |
|
---|
49 | #define XFIOKIT_SCREEN_PRIV(pScreen) \
|
---|
50 | ((XFIOKitScreenPtr)pScreen->devPrivates[xfIOKitScreenIndex].ptr)
|
---|
51 |
|
---|
52 | extern int xfIOKitScreenIndex; // index into pScreen.devPrivates
|
---|
53 | extern io_connect_t xfIOKitInputConnect;
|
---|
54 |
|
---|
55 | Bool XFIOKitInitCursor(ScreenPtr pScreen);
|
---|
56 |
|
---|
57 | #endif /* _XFIOKIT_H */
|
---|