riva_include.h revision bd304fc0
1#ifndef __RIVA_INCLUDE_H__
2#define __RIVA_INCLUDE_H__
3
4#include <string.h>
5
6/* All drivers should typically include these */
7#include "xf86.h"
8#include "xf86_OSproc.h"
9
10#if GET_ABI_MAJOR(ABI_VIDEODRV_VERSION) < 6
11#include "xf86Resources.h"
12#include "xf86RAC.h"
13#endif
14#include "compiler.h"
15
16/* Drivers for PCI hardware need this */
17#include "xf86PciInfo.h"
18
19/* Drivers that need to access the PCI config space directly need this */
20#include "xf86Pci.h"
21
22/* All drivers initialising the SW cursor need this */
23#include "mipointer.h"
24
25/* All drivers implementing backing store need this */
26#include "mibstore.h"
27
28#include "micmap.h"
29
30#include "xf86DDC.h"
31
32#include "vbe.h"
33
34
35#include "riva_const.h"
36
37#include "dixstruct.h"
38#include "scrnintstr.h"
39
40#include "fb.h"
41
42#ifdef HAVE_XAA_H
43#include "xaa.h"
44#endif
45#include "xf86fbman.h"
46#include "xf86cmap.h"
47#include "shadowfb.h"
48#include "fbdevhw.h"
49
50#include "xf86xv.h"
51#include <X11/extensions/Xv.h>
52
53#include "vgaHW.h"
54
55#include "xf86Cursor.h"
56
57#include "region.h"
58
59#include "compat-api.h"
60#include "riva_local.h"
61#include "riva_type.h"
62#include "riva_proto.h"
63
64#endif /* __RIVA_INCLUDE_H__ */
65