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 "pci_ids.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#include "micmap.h" 26 27#include "xf86DDC.h" 28 29#include "vbe.h" 30 31 32#include "riva_const.h" 33 34#include "dixstruct.h" 35#include "scrnintstr.h" 36 37#include "fb.h" 38 39#ifdef HAVE_XAA_H 40#include "xaa.h" 41#endif 42#include "xf86fbman.h" 43#include "xf86cmap.h" 44#include "shadowfb.h" 45#include "fbdevhw.h" 46 47#include "xf86xv.h" 48#include <X11/extensions/Xv.h> 49 50#include "vgaHW.h" 51 52#include "xf86Cursor.h" 53 54#include "region.h" 55 56#include "compat-api.h" 57#include "riva_local.h" 58#include "riva_type.h" 59#include "riva_proto.h" 60 61#endif /* __RIVA_INCLUDE_H__ */ 62