]> git.sesse.net Git - rdpsrv/blob - Xserver/include/fonts/fsmasks.h
Import X server from vnc-3.3.7.
[rdpsrv] / Xserver / include / fonts / fsmasks.h
1 /* $XConsortium: fsmasks.h,v 1.5 94/04/17 20:11:08 dpw Exp $ */
2 /*
3  * Copyright 1990, 1991 Network Computing Devices;
4  * Portions Copyright 1987 by Digital Equipment Corporation 
5  *
6  * Permission to use, copy, modify, distribute, and sell this software and
7  * its documentation for any purpose is hereby granted without fee, provided
8  * that the above copyright notice appear in all copies and that both that
9  * copyright notice and this permission notice appear in supporting
10  * documentation, and that the names of Network Computing Devices or Digital
11  * not be used in advertising or publicity pertaining to distribution
12  * of the software without specific, written prior permission.
13  * Network Computing Devices and Digital make no representations 
14  * about the suitability of this software for any purpose.  It is provided 
15  * "as is" without express or implied warranty.
16  *
17  * NETWORK COMPUTING DEVICES AND DIGITAL DISCLAIM ALL WARRANTIES WITH
18  * REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF
19  * MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL NETWORK COMPUTING DEVICES
20  * OR DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL
21  * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
22  * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
23  * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
24  * THIS SOFTWARE.
25  */
26
27 /*
28
29 Portions Copyright (c) 1987, 1994  X Consortium
30
31 Permission is hereby granted, free of charge, to any person obtaining a copy
32 of this software and associated documentation files (the "Software"), to deal
33 in the Software without restriction, including without limitation the rights
34 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
35 copies of the Software, and to permit persons to whom the Software is
36 furnished to do so, subject to the following conditions:
37
38 The above copyright notice and this permission notice shall be included in
39 all copies or substantial portions of the Software.
40
41 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
42 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
43 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
44 X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
45 AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
46 CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
47
48 Except as contained in this notice, the name of the X Consortium shall not be
49 used in advertising or otherwise to promote the sale, use or other dealings
50 in this Software without prior written authorization from the X Consortium.
51
52 */
53
54
55 /*
56  * masks & values used by the font lib and the font server
57  */
58
59 #ifndef _FSMASKS_H_
60 #define _FSMASKS_H_
61
62 #include <X11/Xmd.h>
63
64 /* font format macros */
65 #define BitmapFormatByteOrderMask       (1L << 0)
66 #define BitmapFormatBitOrderMask        (1L << 1)
67 #define BitmapFormatImageRectMask       (3L << 2)
68 #define BitmapFormatScanlinePadMask     (3L << 8)
69 #define BitmapFormatScanlineUnitMask    (3L << 12)
70
71 #define BitmapFormatByteOrderLSB        (0)
72 #define BitmapFormatByteOrderMSB        (1L << 0)
73 #define BitmapFormatBitOrderLSB         (0)
74 #define BitmapFormatBitOrderMSB         (1L << 1)
75
76 #define BitmapFormatImageRectMin        (0L << 2)
77 #define BitmapFormatImageRectMaxWidth   (1L << 2)
78 #define BitmapFormatImageRectMax        (2L << 2)
79
80 #define BitmapFormatScanlinePad8        (0L << 8)
81 #define BitmapFormatScanlinePad16       (1L << 8)
82 #define BitmapFormatScanlinePad32       (2L << 8)
83 #define BitmapFormatScanlinePad64       (3L << 8)
84
85 #define BitmapFormatScanlineUnit8       (0L << 12)
86 #define BitmapFormatScanlineUnit16      (1L << 12)
87 #define BitmapFormatScanlineUnit32      (2L << 12)
88 #define BitmapFormatScanlineUnit64      (3L << 12)
89
90 #define BitmapFormatMaskByte            (1L << 0)
91 #define BitmapFormatMaskBit             (1L << 1)
92 #define BitmapFormatMaskImageRectangle  (1L << 2)
93 #define BitmapFormatMaskScanLinePad     (1L << 3)
94 #define BitmapFormatMaskScanLineUnit    (1L << 4)
95
96 typedef CARD32 fsBitmapFormat;
97 typedef CARD32 fsBitmapFormatMask;
98
99 #endif  /* _FSMASKS_H_ */