blob: f0171f3c0f804a8a995233a0bd16afe84cd628ed (
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
73
74
75
76
77
78
79
80
81
82
83
84
|
/* modified from tdfx_dri.h */
#ifndef _SIS_DRI_
#define _SIS_DRI_
#include "xf86drm.h"
#include "drm.h"
#define SIS_MAX_DRAWABLES 256
#define SISIOMAPSIZE (64*1024)
typedef struct {
int CtxOwner;
int QueueLength;
unsigned int AGPCmdBufNext;
unsigned int FrameCount;
#ifdef SIS315DRI
/* For 315 series */
unsigned long sharedWPoffset;
#endif
#if 0
unsigned char *AGPCmdBufBase;
unsigned long AGPCmdBufAddr;
unsigned long AGPCmdBufOffset;
unsigned int AGPCmdBufSize;
unsigned long AGPCmdBufNext;
#endif
} SISSAREAPriv, *SISSAREAPrivPtr;
#define AGPVtxBufNext AGPCmdBufNext
#define SIS_FRONT 0
#define SIS_BACK 1
#define SIS_DEPTH 2
typedef struct {
drm_handle_t handle;
drmSize size;
} sisRegion, *sisRegionPtr;
typedef struct {
sisRegion regs, agp;
int deviceID;
int width;
int height;
int mem; /* unused in Mesa 3 DRI */
int bytesPerPixel;
int priv1; /* unused in Mesa 3 DRI */
int priv2; /* unused in Mesa 3 DRI */
int fbOffset; /* unused in Mesa 3 DRI */
int backOffset; /* unused in Mesa 3 DRI */
int depthOffset; /* unused in Mesa 3 DRI */
int textureOffset; /* unused in Mesa 3 DRI */
int textureSize; /* unused in Mesa 3 DRI */
unsigned int AGPCmdBufOffset;
unsigned int AGPCmdBufSize;
int irqEnabled; /* unused in Mesa 3 DRI */
unsigned int scrnX, scrnY; /* unused in Mesa 3 DRI */
} SISDRIRec, *SISDRIPtr;
#define AGPVtxBufOffset AGPCmdBufOffset
#define AGPVtxBufSize AGPCmdBufSize
typedef struct {
/* Nothing here yet */
int dummy;
} SISConfigPrivRec, *SISConfigPrivPtr;
typedef struct {
/* Nothing here yet */
int dummy;
} SISDRIContextRec, *SISDRIContextPtr;
#ifdef XFree86Server
#include "screenint.h"
Bool SISDRIScreenInit(ScreenPtr pScreen);
void SISDRICloseScreen(ScreenPtr pScreen);
Bool SISDRIFinishScreenInit(ScreenPtr pScreen);
#endif
#endif
|