riva_include.h revision fc5a983d
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#include "xf86Resources.h" 10#include "compiler.h" 11 12/* Drivers for PCI hardware need this */ 13#include "xf86PciInfo.h" 14 15/* Drivers that need to access the PCI config space directly need this */ 16#include "xf86Pci.h" 17 18/* All drivers initialising the SW cursor need this */ 19#include "mipointer.h" 20 21/* All drivers implementing backing store need this */ 22#include "mibstore.h" 23 24#include "micmap.h" 25 26#include "xf86DDC.h" 27 28#include "vbe.h" 29 30#include "xf86RAC.h" 31 32#include "riva_const.h" 33 34#include "dixstruct.h" 35#include "scrnintstr.h" 36 37#include "fb.h" 38 39#include "xaa.h" 40#include "xf86cmap.h" 41#include "shadowfb.h" 42#include "fbdevhw.h" 43 44#include "xf86xv.h" 45#include <X11/extensions/Xv.h> 46 47#include "vgaHW.h" 48 49#include "xf86Cursor.h" 50#include "xf86DDC.h" 51 52#include "region.h" 53 54#include "riva_local.h" 55#include "riva_type.h" 56#include "riva_proto.h" 57 58#endif /* __RIVA_INCLUDE_H__ */ 59