1/*
2 * file hwcursor.h
3 */
4
5#ifndef __HWCURSOR_H__
6#define __HWCURSOR_H__
7
8/*
9 * functions prototypes
10 */
11
12void RenditionHWCursorPreInit(ScrnInfoPtr pScreenInfo);
13Bool RenditionHWCursorInit(ScreenPtr pScreen);
14void RenditionHWCursorRelease (ScrnInfoPtr pScreenInfo);
15
16#define HC_SIZE  (64*64*2)/8  /* 1024 */
17
18/* end of __HWCURSOR_H__ */
19#endif
20
21/*
22 * end of file hwcursor.h
23 */
24
25