fbcon-afb.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  FBcon low-level driver for Amiga bitplanes (afb)
  3.  */
  4. #ifndef _VIDEO_FBCON_AFB_H
  5. #define _VIDEO_FBCON_AFB_H
  6. #include <linux/config.h>
  7. #ifdef MODULE
  8. #if defined(CONFIG_FBCON_AFB) || defined(CONFIG_FBCON_AFB_MODULE)
  9. #define FBCON_HAS_AFB
  10. #endif
  11. #else
  12. #if defined(CONFIG_FBCON_AFB)
  13. #define FBCON_HAS_AFB
  14. #endif
  15. #endif
  16. extern struct display_switch fbcon_afb;
  17. extern void fbcon_afb_setup(struct display *p);
  18. extern void fbcon_afb_bmove(struct display *p, int sy, int sx, int dy, int dx,
  19.     int height, int width);
  20. extern void fbcon_afb_clear(struct vc_data *conp, struct display *p, int sy,
  21.     int sx, int height, int width);
  22. extern void fbcon_afb_putc(struct vc_data *conp, struct display *p, int c,
  23.    int yy, int xx);
  24. extern void fbcon_afb_putcs(struct vc_data *conp, struct display *p,
  25.     const unsigned short *s, int count, int yy, int xx);
  26. extern void fbcon_afb_revc(struct display *p, int xx, int yy);
  27. #endif