sm750_cursor.h 620 B

1234567891011121314151617
  1. #ifndef LYNX_CURSOR_H__
  2. #define LYNX_CURSOR_H__
  3. /* hw_cursor_xxx works for voyager,718 and 750 */
  4. void hw_cursor_enable(struct lynx_cursor *cursor);
  5. void hw_cursor_disable(struct lynx_cursor *cursor);
  6. void hw_cursor_setSize(struct lynx_cursor *cursor,
  7. int w, int h);
  8. void hw_cursor_setPos(struct lynx_cursor *cursor,
  9. int x, int y);
  10. void hw_cursor_setColor(struct lynx_cursor *cursor,
  11. u32 fg, u32 bg);
  12. void hw_cursor_setData(struct lynx_cursor *cursor,
  13. u16 rop, const u8 *data, const u8 *mask);
  14. void hw_cursor_setData2(struct lynx_cursor *cursor,
  15. u16 rop, const u8 *data, const u8 *mask);
  16. #endif