1 /* 2 * file accel.h 3 * 4 * header file for accel.c 5 */ 6 7 #ifndef __ACCEL_H__ 8 #define __ACCEL_H__ 9 10 11 12 /* 13 * includes 14 */ 15 16 #include "vtypes.h" 17 18 19 20 /* 21 * function prototypes 22 */ 23 24 void RENDITIONAccelPreInit(ScrnInfoPtr pScreenInfo); 25 void RENDITIONAccelXAAInit(ScreenPtr pScreen); 26 void RENDITIONAccelNone(ScrnInfoPtr pScreenInfo); 27 int RENDITIONInitUcode(ScrnInfoPtr pScreenInfo); 28 int RENDITIONLoadUcode(ScrnInfoPtr pScreenInfo); 29 30 void RENDITIONDumpUcode(ScrnInfoPtr pScreenInfo); 31 void RENDITIONDrawSomething(ScrnInfoPtr pScreenInfo); 32 33 34 35 #endif /* #ifdef __ACCEL_H__ */ 36 37 /* 38 * end of file accel.h 39 */ 40