blob: 69f0d04141971c29c236a835e54b567bd1a14831 (
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
|
/* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/tdfx/tdfx_dripriv.h,v 1.2 1999/12/14 01:33:50 robin Exp $ */
#ifndef _TDFX_DRIPRIV_H_
#define _TDFX_DRIPRIV_H_
#define TDFX_MAX_DRAWABLES 256
extern void GlxSetVisualConfigs(
int nconfigs,
__GLXvisualConfig *configs,
void **configprivs
);
typedef struct {
/* Nothing here yet */
int dummy;
} TDFXConfigPrivRec, *TDFXConfigPrivPtr;
typedef struct {
/* Nothing here yet */
int dummy;
} TDFXDRIContextRec, *TDFXDRIContextPtr;
#endif
|