VirtualBox

source: vbox/trunk/src/VBox/Additions/x11/x11include/xorg-server-1.0.1/vbeModes.h@ 62425

最後變更 在這個檔案從62425是 51223,由 vboxsync 提交於 11 年 前

Additions/x11/x11include: added header files for X.Org Server 1.0 and 1.1.

  • 屬性 svn:eol-style 設為 native
檔案大小: 3.4 KB
 
1/*
2 * Copyright © 2002 David Dawes
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
13 *
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17 * THE AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
18 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
19 * OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20 * SOFTWARE.
21 *
22 * Except as contained in this notice, the name of the author(s) shall
23 * not be used in advertising or otherwise to promote the sale, use or other
24 * dealings in this Software without prior written authorization from
25 * the author(s).
26 *
27 * Authors: David Dawes <[email protected]>
28 *
29 * $XFree86: xc/programs/Xserver/hw/xfree86/os-support/vbe/vbeModes.h,v 1.1 2002/08/06 13:46:28 dawes Exp $
30 */
31
32#ifndef _VBE_MODES_H
33
34/*
35 * This is intended to be stored in the DisplayModeRec's private area.
36 * It includes all the information necessary to VBE information.
37 */
38typedef struct _VbeModeInfoData {
39 int mode;
40 VbeModeInfoBlock *data;
41 VbeCRTCInfoBlock *block;
42} VbeModeInfoData;
43
44#define V_DEPTH_1 0x001
45#define V_DEPTH_4 0x002
46#define V_DEPTH_8 0x004
47#define V_DEPTH_15 0x008
48#define V_DEPTH_16 0x010
49#define V_DEPTH_24_24 0x020
50#define V_DEPTH_24_32 0x040
51#define V_DEPTH_24 (V_DEPTH_24_24 | V_DEPTH_24_32)
52#define V_DEPTH_30 0x080
53#define V_DEPTH_32 0x100
54
55#define VBE_MODE_SUPPORTED(m) (((m)->ModeAttributes & 0x01) != 0)
56#define VBE_MODE_COLOR(m) (((m)->ModeAttributes & 0x08) != 0)
57#define VBE_MODE_GRAPHICS(m) (((m)->ModeAttributes & 0x10) != 0)
58#define VBE_MODE_VGA(m) (((m)->ModeAttributes & 0x40) == 0)
59#define VBE_MODE_LINEAR(m) (((m)->ModeAttributes & 0x80) != 0 && \
60 ((m)->PhysBasePtr != 0))
61
62#define VBE_MODE_USABLE(m, f) (VBE_MODE_SUPPORTED(m) || \
63 (f & V_MODETYPE_BAD)) && \
64 VBE_MODE_GRAPHICS(m) && \
65 (VBE_MODE_VGA(m) || VBE_MODE_LINEAR(m))
66
67#define V_MODETYPE_VBE 0x01
68#define V_MODETYPE_VGA 0x02
69#define V_MODETYPE_BAD 0x04
70
71extern int VBEFindSupportedDepths(vbeInfoPtr pVbe, VbeInfoBlock *vbe,
72 int *flags24, int modeTypes);
73extern DisplayModePtr VBEGetModePool(ScrnInfoPtr pScrn, vbeInfoPtr pVbe,
74 VbeInfoBlock *vbe, int modeTypes);
75extern void VBESetModeNames(DisplayModePtr pMode);
76extern void VBESetModeParameters(ScrnInfoPtr pScrn, vbeInfoPtr pVbe);
77
78
79/*
80 * Note: These are alternatives to the standard helpers. They should
81 * usually just wrap the standard helpers.
82 */
83extern int VBEValidateModes(ScrnInfoPtr scrp, DisplayModePtr availModes,
84 char **modeNames, ClockRangePtr clockRanges,
85 int *linePitches, int minPitch, int maxPitch,
86 int pitchInc, int minHeight, int maxHeight,
87 int virtualX, int virtualY, int apertureSize,
88 LookupModeFlags strategy);
89extern void VBEPrintModes(ScrnInfoPtr scrp);
90
91#endif /* VBE_MODES_H */
注意: 瀏覽 TracBrowser 來幫助您使用儲存庫瀏覽器

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