]> rtime.felk.cvut.cz Git - l4.git/blob - l4/pkg/l4con/examples/xf86_stub/include-xorg-6.9.0/xserver/colormap.h
Inital import
[l4.git] / l4 / pkg / l4con / examples / xf86_stub / include-xorg-6.9.0 / xserver / colormap.h
1 /* $XFree86: xc/programs/Xserver/include/colormap.h,v 1.5 2001/12/14 19:59:53 dawes Exp $ */
2 /*
3
4 Copyright 1987, 1998  The Open Group
5
6 Permission to use, copy, modify, distribute, and sell this software and its
7 documentation for any purpose is hereby granted without fee, provided that
8 the above copyright notice appear in all copies and that both that
9 copyright notice and this permission notice appear in supporting
10 documentation.
11
12 The above copyright notice and this permission notice shall be included in
13 all copies or substantial portions of the Software.
14
15 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
18 OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
19 AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
20 CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
21
22 Except as contained in this notice, the name of The Open Group shall not be
23 used in advertising or otherwise to promote the sale, use or other dealings
24 in this Software without prior written authorization from The Open Group.
25
26
27 Copyright 1987 by Digital Equipment Corporation, Maynard, Massachusetts.
28
29                         All Rights Reserved
30
31 Permission to use, copy, modify, and distribute this software and its 
32 documentation for any purpose and without fee is hereby granted, 
33 provided that the above copyright notice appear in all copies and that
34 both that copyright notice and this permission notice appear in 
35 supporting documentation, and that the name of Digital not be
36 used in advertising or publicity pertaining to distribution of the
37 software without specific, written prior permission.  
38
39 DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
40 ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
41 DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
42 ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
43 WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
44 ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
45 SOFTWARE.
46
47 */
48 /* $Xorg: colormap.h,v 1.4 2001/02/09 02:05:14 xorgcvs Exp $ */
49
50 #ifndef CMAP_H
51 #define CMAP_H 1
52
53 #include <X11/Xproto.h>
54 #include "screenint.h"
55 #include "window.h"
56
57 /* these follow X.h's AllocNone and AllocAll */
58 #define CM_PSCREEN 2
59 #define CM_PWIN    3
60 /* Passed internally in colormap.c */
61 #define REDMAP 0
62 #define GREENMAP 1
63 #define BLUEMAP 2
64 #define PSEUDOMAP 3
65 #define AllocPrivate (-1)
66 #define AllocTemporary (-2)
67 #define DynamicClass  1
68
69 /* Values for the flags field of a colormap. These should have 1 bit set
70  * and not overlap */
71 #define IsDefault 1
72 #define AllAllocated 2
73 #define BeingCreated 4
74
75
76 typedef CARD32 Pixel;
77 typedef struct _CMEntry *EntryPtr;
78 /* moved to screenint.h: typedef struct _ColormapRec *ColormapPtr */
79 typedef struct _colorResource *colorResourcePtr;
80
81 extern int CreateColormap(
82     Colormap /*mid*/,
83     ScreenPtr /*pScreen*/,
84     VisualPtr /*pVisual*/,
85     ColormapPtr* /*ppcmap*/,
86     int /*alloc*/,
87     int /*client*/);
88
89 extern int FreeColormap(
90     pointer /*pmap*/,
91     XID /*mid*/);
92
93 extern int TellLostMap(
94     WindowPtr /*pwin*/,
95     pointer /* Colormap *pmid */);
96
97 extern int TellGainedMap(
98     WindowPtr /*pwin*/,
99     pointer /* Colormap *pmid */);
100
101 extern int CopyColormapAndFree(
102     Colormap /*mid*/,
103     ColormapPtr /*pSrc*/,
104     int /*client*/);
105
106 extern int AllocColor(
107     ColormapPtr /*pmap*/,
108     unsigned short* /*pred*/,
109     unsigned short* /*pgreen*/,
110     unsigned short* /*pblue*/,
111     Pixel* /*pPix*/,
112     int /*client*/);
113
114 extern void FakeAllocColor(
115     ColormapPtr /*pmap*/,
116     xColorItem * /*item*/);
117
118 extern void FakeFreeColor(
119     ColormapPtr /*pmap*/,
120     Pixel /*pixel*/);
121
122 typedef int (*ColorCompareProcPtr)(
123     EntryPtr /*pent*/,
124     xrgb * /*prgb*/);
125
126 extern int FindColor(
127     ColormapPtr /*pmap*/,
128     EntryPtr /*pentFirst*/,
129     int /*size*/,
130     xrgb* /*prgb*/,
131     Pixel* /*pPixel*/,
132     int /*channel*/,
133     int /*client*/,
134     ColorCompareProcPtr /*comp*/);
135
136 extern int QueryColors(
137     ColormapPtr /*pmap*/,
138     int /*count*/,
139     Pixel* /*ppixIn*/,
140     xrgb* /*prgbList*/);
141
142 extern int FreeClientPixels(
143     pointer /*pcr*/,
144     XID /*fakeid*/);
145
146 extern int AllocColorCells(
147     int /*client*/,
148     ColormapPtr /*pmap*/,
149     int /*colors*/,
150     int /*planes*/,
151     Bool /*contig*/,
152     Pixel* /*ppix*/,
153     Pixel* /*masks*/);
154
155 extern int AllocColorPlanes(
156     int /*client*/,
157     ColormapPtr /*pmap*/,
158     int /*colors*/,
159     int /*r*/,
160     int /*g*/,
161     int /*b*/,
162     Bool /*contig*/,
163     Pixel* /*pixels*/,
164     Pixel* /*prmask*/,
165     Pixel* /*pgmask*/,
166     Pixel* /*pbmask*/);
167
168 extern int FreeColors(
169     ColormapPtr /*pmap*/,
170     int /*client*/,
171     int /*count*/,
172     Pixel* /*pixels*/,
173     Pixel /*mask*/);
174
175 extern int StoreColors(
176     ColormapPtr /*pmap*/,
177     int /*count*/,
178     xColorItem* /*defs*/);
179
180 extern int IsMapInstalled(
181     Colormap /*map*/,
182     WindowPtr /*pWin*/);
183
184 #endif /* CMAP_H */