blob: 783d79b9357581741903652ed903e8844062759e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/* $XFree86: xc/programs/Xserver/hw/xfree86/rac/xf86RAC.h,v 1.2 1999/05/15 12:10:33 dawes Exp $ */
#ifndef __XF86RAC_H
#define __XF86RAC_H 1
#include "screenint.h"
#include "misc.h"
#include "xf86.h"
Bool xf86RACInit(ScreenPtr pScreen, unsigned int flag);
/* flags */
#define RAC_FB 0x01
#define RAC_CURSOR 0x02
#define RAC_COLORMAP 0x04
#define RAC_VIEWPORT 0x08
#endif /* __XF86RAC_H */
|