blob: 1387858c8a95cde0b4cfeb4e806ab29ab6529d3e (
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
|
/* $XFree86: xc/programs/Xserver/hw/xfree86/drivers/rendition/hwcursor.h,v 1.4 1999/11/19 13:54:45 hohndel Exp $ */
/*
* file hwcursor.h
*/
#ifndef __HWCURSOR_H__
#define __HWCURSOR_H__
/*
* functions prototypes
*/
void RenditionHWCursorPreInit(ScrnInfoPtr pScreenInfo);
Bool RenditionHWCursorInit(int scrnIndex, ScreenPtr pScreen);
void RenditionHWCursorRelease (ScrnInfoPtr pScreenInfo);
#define HC_SIZE (64*64*2)/8 /* 1024 */
/* end of __HWCURSOR_H__ */
#endif
/*
* end of file hwcursor.h
*/
|