VirtualBox

source: vbox/trunk/src/VBox/Additions/x11/x11include/XFree86-4.3/Xserver/glyphstr.h@ 97956

最後變更 在這個檔案從97956是 69098,由 vboxsync 提交於 7 年 前

Clean up XFree86 driver header files.
bugref:3810: X11 Guest Additions maintenance
Over the years we have cleaned up the layout in the tree of the X.Org
header files we use to build drivers. The XFree86 ones were still in their
original, rather sub-optimal layout. This change fixes that.

  • 屬性 svn:eol-style 設為 native
檔案大小: 3.2 KB
 
1/*
2 * $XFree86: xc/programs/Xserver/render/glyphstr.h,v 1.4 2001/01/21 21:19:39 tsi Exp $
3 *
4 * Copyright © 2000 SuSE, Inc.
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, and that the name of SuSE not be used in advertising or
11 * publicity pertaining to distribution of the software without specific,
12 * written prior permission. SuSE makes no representations about the
13 * suitability of this software for any purpose. It is provided "as is"
14 * without express or implied warranty.
15 *
16 * SuSE DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL
17 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL SuSE
18 * BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
19 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
20 * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
21 * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
22 *
23 * Author: Keith Packard, SuSE, Inc.
24 */
25
26#ifndef _GLYPHSTR_H_
27#define _GLYPHSTR_H_
28
29#include "renderproto.h"
30#include "picture.h"
31#include "screenint.h"
32
33#define GlyphFormat1 0
34#define GlyphFormat4 1
35#define GlyphFormat8 2
36#define GlyphFormat16 3
37#define GlyphFormat32 4
38#define GlyphFormatNum 5
39
40typedef struct _Glyph {
41 CARD32 refcnt;
42 CARD32 size; /* info + bitmap */
43 xGlyphInfo info;
44 /* bits follow */
45} GlyphRec, *GlyphPtr;
46
47typedef struct _GlyphRef {
48 CARD32 signature;
49 GlyphPtr glyph;
50} GlyphRefRec, *GlyphRefPtr;
51
52#define DeletedGlyph ((GlyphPtr) 1)
53
54typedef struct _GlyphHashSet {
55 CARD32 entries;
56 CARD32 size;
57 CARD32 rehash;
58} GlyphHashSetRec, *GlyphHashSetPtr;
59
60typedef struct _GlyphHash {
61 GlyphRefPtr table;
62 GlyphHashSetPtr hashSet;
63 CARD32 tableEntries;
64} GlyphHashRec, *GlyphHashPtr;
65
66typedef struct _GlyphSet {
67 CARD32 refcnt;
68 PictFormatPtr format;
69 int fdepth;
70 GlyphHashRec hash;
71} GlyphSetRec, *GlyphSetPtr;
72
73typedef struct _GlyphList {
74 INT16 xOff;
75 INT16 yOff;
76 CARD8 len;
77 PictFormatPtr format;
78} GlyphListRec, *GlyphListPtr;
79
80extern GlyphHashRec globalGlyphs[GlyphFormatNum];
81
82GlyphHashSetPtr
83FindGlyphHashSet (CARD32 filled);
84
85Bool
86GlyphInit (ScreenPtr pScreen);
87
88GlyphRefPtr
89FindGlyphRef (GlyphHashPtr hash, CARD32 signature, Bool match, GlyphPtr compare);
90
91CARD32
92HashGlyph (GlyphPtr glyph);
93
94void
95FreeGlyph (GlyphPtr glyph, int format);
96
97void
98AddGlyph (GlyphSetPtr glyphSet, GlyphPtr glyph, Glyph id);
99
100Bool
101DeleteGlyph (GlyphSetPtr glyphSet, Glyph id);
102
103GlyphPtr
104FindGlyph (GlyphSetPtr glyphSet, Glyph id);
105
106GlyphPtr
107AllocateGlyph (xGlyphInfo *gi, int format);
108
109Bool
110AllocateGlyphHash (GlyphHashPtr hash, GlyphHashSetPtr hashSet);
111
112Bool
113ResizeGlyphHash (GlyphHashPtr hash, CARD32 change, Bool global);
114
115Bool
116ResizeGlyphSet (GlyphSetPtr glyphSet, CARD32 change);
117
118GlyphSetPtr
119AllocateGlyphSet (int fdepth, PictFormatPtr format);
120
121int
122FreeGlyphSet (pointer value,
123 XID gid);
124
125
126
127#endif /* _GLYPHSTR_H_ */
注意: 瀏覽 TracBrowser 來幫助您使用儲存庫瀏覽器

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette