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