1 | /* $XFree86$ */
|
---|
2 | /*
|
---|
3 | * Copyright 2002-2004 Red Hat Inc., Durham, North Carolina.
|
---|
4 | *
|
---|
5 | * All Rights Reserved.
|
---|
6 | *
|
---|
7 | * Permission is hereby granted, free of charge, to any person obtaining
|
---|
8 | * a copy of this software and associated documentation files (the
|
---|
9 | * "Software"), to deal in the Software without restriction, including
|
---|
10 | * without limitation on the rights to use, copy, modify, merge,
|
---|
11 | * publish, distribute, sublicense, and/or sell copies of the Software,
|
---|
12 | * and to permit persons to whom the Software is furnished to do so,
|
---|
13 | * subject to the following conditions:
|
---|
14 | *
|
---|
15 | * The above copyright notice and this permission notice (including the
|
---|
16 | * next paragraph) shall be included in all copies or substantial
|
---|
17 | * portions of the Software.
|
---|
18 | *
|
---|
19 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
---|
20 | * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
---|
21 | * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
---|
22 | * NON-INFRINGEMENT. IN NO EVENT SHALL RED HAT AND/OR THEIR SUPPLIERS
|
---|
23 | * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
|
---|
24 | * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
---|
25 | * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
---|
26 | * SOFTWARE.
|
---|
27 | */
|
---|
28 |
|
---|
29 | /*
|
---|
30 | * Authors:
|
---|
31 | * Kevin E. Martin <[email protected]>
|
---|
32 | *
|
---|
33 | */
|
---|
34 |
|
---|
35 | /** \file
|
---|
36 | * Header file for colormap support. \see dmxcmap.c. */
|
---|
37 |
|
---|
38 | #ifndef DMXCMAP_H
|
---|
39 | #define DMXCMAP_H
|
---|
40 |
|
---|
41 | #include "colormapst.h"
|
---|
42 |
|
---|
43 | /** Colormap private area. */
|
---|
44 | typedef struct _dmxColormapPriv {
|
---|
45 | Colormap cmap;
|
---|
46 | } dmxColormapPrivRec, *dmxColormapPrivPtr;
|
---|
47 |
|
---|
48 |
|
---|
49 | extern Bool dmxCreateColormap(ColormapPtr pColormap);
|
---|
50 | extern void dmxDestroyColormap(ColormapPtr pColormap);
|
---|
51 | extern void dmxInstallColormap(ColormapPtr pColormap);
|
---|
52 | extern void dmxStoreColors(ColormapPtr pColormap, int ndef, xColorItem *pdef);
|
---|
53 |
|
---|
54 | extern Bool dmxCreateDefColormap(ScreenPtr pScreen);
|
---|
55 |
|
---|
56 | extern Bool dmxBECreateColormap(ColormapPtr pColormap);
|
---|
57 | extern Bool dmxBEFreeColormap(ColormapPtr pColormap);
|
---|
58 |
|
---|
59 | /** Private index. \see dmxcmap.c \see dmxscrinit.c \see dmxwindow.c */
|
---|
60 | extern int dmxColormapPrivateIndex;
|
---|
61 |
|
---|
62 | /** Set colormap private structure. */
|
---|
63 | #define DMX_SET_COLORMAP_PRIV(_pCMap, _pCMapPriv) \
|
---|
64 | (_pCMap)->devPrivates[dmxColormapPrivateIndex].ptr \
|
---|
65 | = (pointer)(_pCMapPriv);
|
---|
66 |
|
---|
67 | /** Get colormap private structure. */
|
---|
68 | #define DMX_GET_COLORMAP_PRIV(_pCMap) \
|
---|
69 | (dmxColormapPrivPtr)(_pCMap)->devPrivates[dmxColormapPrivateIndex].ptr
|
---|
70 |
|
---|
71 | #endif /* DMXCMAP_H */
|
---|