~ubuntu-branches/ubuntu/karmic/virtualbox-ose/karmic-updates

« back to all changes in this revision

Viewing changes to src/VBox/Additions/x11/x11include/xorg-server-1.5.3/dixfontstr.h

  • Committer: Bazaar Package Importer
  • Author(s): Felix Geyer
  • Date: 2009-09-14 18:25:07 UTC
  • mfrom: (0.4.1 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090914182507-c98g07mq16hjmn6d
Tags: 3.0.6-dfsg-1ubuntu1
* Merge from debian unstable (LP: #429697), remaining changes:
  - Enable DKMS support on virtualbox host and guest modules (LP: #267097)
    - Drop virtualbox-ose{-guest,}-modules-* package templates
    - Recommend *-source instead of *-modules packages
    - Replace error messages related to missing/mismatched
      kernel module accordingly
  - Autoload kernel module
    - LOAD_VBOXDRV_MODULE=1 in virtualbox-ose.default
  - Disable update action
    - patches/u01-disable-update-action.dpatch
  - Virtualbox should go in Accessories, not in System tools (LP: #288590)
    - virtualbox-ose-qt.files/virtualbox-ose.desktop
  - Add apport hook
    - virtualbox-ose.files/source_virtualbox-ose.py
    - virtualbox-ose.install
  - Add launchpad integration
    - control
    - lpi-bug.xpm
    - patches/u02-lp-integration.dpatch
  - virtualbox, virtualbox-* (names of the upstream proprietary packages)
    conflict with virtualbox-ose (LP: #379878)
* Make debug package depend on normal or guest utils package
* Drop patches/22-pulseaudio-stubs.dpatch (applied upstream)
* Rename Ubuntu specific patches to uXX-*.dpatch
* Fix lintian warnings in maintainer scripts

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/***********************************************************
2
 
Copyright 1987 by Digital Equipment Corporation, Maynard, Massachusetts.
3
 
 
4
 
                        All Rights Reserved
5
 
 
6
 
Permission to use, copy, modify, and distribute this software and its
7
 
documentation for any purpose and without fee is hereby granted,
8
 
provided that the above copyright notice appear in all copies and that
9
 
both that copyright notice and this permission notice appear in
10
 
supporting documentation, and that the name of Digital not be
11
 
used in advertising or publicity pertaining to distribution of the
12
 
software without specific, written prior permission.
13
 
 
14
 
DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
15
 
ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
16
 
DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
17
 
ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
18
 
WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
19
 
ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
20
 
SOFTWARE.
21
 
 
22
 
******************************************************************/
23
 
 
24
 
#ifndef DIXFONTSTRUCT_H
25
 
#define DIXFONTSTRUCT_H
26
 
 
27
 
#include "servermd.h"
28
 
#include "dixfont.h"
29
 
#include <X11/fonts/fontstruct.h>
30
 
#include "closure.h"
31
 
#define NEED_REPLIES
32
 
#include <X11/Xproto.h> /* for xQueryFontReply */
33
 
 
34
 
#define FONTCHARSET(font)         (font)
35
 
#define FONTMAXBOUNDS(font,field) (font)->info.maxbounds.field
36
 
#define FONTMINBOUNDS(font,field) (font)->info.minbounds.field
37
 
#define TERMINALFONT(font)        (font)->info.terminalFont
38
 
#define FONTASCENT(font)          (font)->info.fontAscent
39
 
#define FONTDESCENT(font)         (font)->info.fontDescent
40
 
#define FONTGLYPHS(font)          0
41
 
#define FONTCONSTMETRICS(font)    (font)->info.constantMetrics
42
 
#define FONTCONSTWIDTH(font)      (font)->info.constantWidth
43
 
#define FONTALLEXIST(font)        (font)->info.allExist
44
 
#define FONTFIRSTCOL(font)        (font)->info.firstCol
45
 
#define FONTLASTCOL(font)         (font)->info.lastCol
46
 
#define FONTFIRSTROW(font)        (font)->info.firstRow
47
 
#define FONTLASTROW(font)         (font)->info.lastRow
48
 
#define FONTDEFAULTCH(font)       (font)->info.defaultCh
49
 
#define FONTINKMIN(font)          (&((font)->info.ink_minbounds))
50
 
#define FONTINKMAX(font)          (&((font)->info.ink_maxbounds))
51
 
#define FONTPROPS(font)           (font)->info.props
52
 
#define FONTGLYPHBITS(base,pci)   ((unsigned char *) (pci)->bits)
53
 
#define FONTINFONPROPS(font)      (font)->info.nprops
54
 
 
55
 
/* some things haven't changed names, but we'll be careful anyway */
56
 
 
57
 
#define FONTREFCNT(font)          (font)->refcnt
58
 
 
59
 
/*
60
 
 * for linear char sets
61
 
 */
62
 
#define N1dChars(pfont) (FONTLASTCOL(pfont) - FONTFIRSTCOL(pfont) + 1)
63
 
 
64
 
/*
65
 
 * for 2D char sets
66
 
 */
67
 
#define N2dChars(pfont) (N1dChars(pfont) * \
68
 
                         (FONTLASTROW(pfont) - FONTFIRSTROW(pfont) + 1))
69
 
 
70
 
#ifndef GLYPHPADBYTES
71
 
#define GLYPHPADBYTES -1
72
 
#endif
73
 
 
74
 
#if GLYPHPADBYTES == 0 || GLYPHPADBYTES == 1
75
 
#define GLYPHWIDTHBYTESPADDED(pci)      (GLYPHWIDTHBYTES(pci))
76
 
#define PADGLYPHWIDTHBYTES(w)           (((w)+7)>>3)
77
 
#endif
78
 
 
79
 
#if GLYPHPADBYTES == 2
80
 
#define GLYPHWIDTHBYTESPADDED(pci)      ((GLYPHWIDTHBYTES(pci)+1) & ~0x1)
81
 
#define PADGLYPHWIDTHBYTES(w)           (((((w)+7)>>3)+1) & ~0x1)
82
 
#endif
83
 
 
84
 
#if GLYPHPADBYTES == 4
85
 
#define GLYPHWIDTHBYTESPADDED(pci)      ((GLYPHWIDTHBYTES(pci)+3) & ~0x3)
86
 
#define PADGLYPHWIDTHBYTES(w)           (((((w)+7)>>3)+3) & ~0x3)
87
 
#endif
88
 
 
89
 
#if GLYPHPADBYTES == 8 /* for a cray? */
90
 
#define GLYPHWIDTHBYTESPADDED(pci)      ((GLYPHWIDTHBYTES(pci)+7) & ~0x7)
91
 
#define PADGLYPHWIDTHBYTES(w)           (((((w)+7)>>3)+7) & ~0x7)
92
 
#endif
93
 
 
94
 
#endif                          /* DIXFONTSTRUCT_H */