blob: 2727925d57b1129b5945185bdc90cb1a4d2b7cb4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
/* $XFree86$ */
/* All drivers should typically include these */
#include "xf86.h"
#include "xf86_OSproc.h"
#include "xf86_ansic.h"
#include "xf86Cursor.h"
#include "xf86xv.h"
#include "Xv.h"
/* Supported chipsets */
typedef enum {
DUMMY_CHIP
} DUMMYType;
/* function prototypes */
extern Bool DUMMYSwitchMode(int scrnIndex, DisplayModePtr mode, int flags);
extern void DUMMYAdjustFrame(int scrnIndex, int x, int y, int flags);
/* in dummy_cursor.c */
extern Bool DUMMYCursorInit(ScreenPtr pScrn);
extern void DUMMYShowCursor(ScrnInfoPtr pScrn);
extern void DUMMYHideCursor(ScrnInfoPtr pScrn);
/* in dummy_dga.c */
Bool DUMMYDGAInit(ScreenPtr pScreen);
/* in dummy_video.c */
extern void DUMMYInitVideo(ScreenPtr pScreen);
/* globals */
typedef struct _color
{
int red;
int green;
int blue;
} dummy_colors;
typedef struct dummyRec
{
DGAModePtr DGAModes;
int numDGAModes;
Bool DGAactive;
int DGAViewportStatus;
/* options */
OptionInfoPtr Options;
Bool swCursor;
/* proc pointer */
CloseScreenProcPtr CloseScreen;
xf86CursorInfoPtr CursorInfo;
Bool DummyHWCursorShown;
int cursorX, cursorY;
int cursorFG, cursorBG;
Bool screenSaver;
Bool video;
XF86VideoAdaptorPtr overlayAdaptor;
int overlay;
int overlay_offset;
int videoKey;
int interlace;
dummy_colors colors[256];
pointer* FBBase;
} DUMMYRec, *DUMMYPtr;
/* The privates of the DUMMY driver */
#define DUMMYPTR(p) ((DUMMYPtr)((p)->driverPrivate))
|