blob: 8cede0721332a81bc3f7564ff85b260b119f491a [file] [log] [blame]
Sudip Mukherjee81dee672015-03-03 16:21:06 +05301#ifndef LYNX_CURSOR_H__
2#define LYNX_CURSOR_H__
3
4/* hw_cursor_xxx works for voyager,718 and 750 */
5void hw_cursor_enable(struct lynx_cursor * cursor);
6void hw_cursor_disable(struct lynx_cursor * cursor);
7void hw_cursor_setSize(struct lynx_cursor * cursor,
8 int w,int h);
9void hw_cursor_setPos(struct lynx_cursor * cursor,
10 int x,int y);
11void hw_cursor_setColor(struct lynx_cursor * cursor,
12 u32 fg,u32 bg);
13void hw_cursor_setData(struct lynx_cursor * cursor,
14 u16 rop,const u8* data,const u8* mask);
15void hw_cursor_setData2(struct lynx_cursor * cursor,
16 u16 rop,const u8* data,const u8* mask);
17#endif