blob: 322633c00635f1cb4a39ba25ae69812d1f46564c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#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
|