diff options
Diffstat (limited to 'drivers/video/atafb.h')
| -rw-r--r-- | drivers/video/atafb.h | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/drivers/video/atafb.h b/drivers/video/atafb.h new file mode 100644 index 000000000000..014e05906cb1 --- /dev/null +++ b/drivers/video/atafb.h | |||
| @@ -0,0 +1,36 @@ | |||
| 1 | #ifndef _VIDEO_ATAFB_H | ||
| 2 | #define _VIDEO_ATAFB_H | ||
| 3 | |||
| 4 | void atafb_mfb_copyarea(struct fb_info *info, u_long next_line, int sy, int sx, int dy, | ||
| 5 | int dx, int height, int width); | ||
| 6 | void atafb_mfb_fillrect(struct fb_info *info, u_long next_line, u32 color, | ||
| 7 | int sy, int sx, int height, int width); | ||
| 8 | void atafb_mfb_linefill(struct fb_info *info, u_long next_line, | ||
| 9 | int dy, int dx, u32 width, | ||
| 10 | const u8 *data, u32 bgcolor, u32 fgcolor); | ||
| 11 | |||
| 12 | void atafb_iplan2p2_copyarea(struct fb_info *info, u_long next_line, int sy, int sx, int dy, | ||
| 13 | int dx, int height, int width); | ||
| 14 | void atafb_iplan2p2_fillrect(struct fb_info *info, u_long next_line, u32 color, | ||
| 15 | int sy, int sx, int height, int width); | ||
| 16 | void atafb_iplan2p2_linefill(struct fb_info *info, u_long next_line, | ||
| 17 | int dy, int dx, u32 width, | ||
| 18 | const u8 *data, u32 bgcolor, u32 fgcolor); | ||
| 19 | |||
| 20 | void atafb_iplan2p4_copyarea(struct fb_info *info, u_long next_line, int sy, int sx, int dy, | ||
| 21 | int dx, int height, int width); | ||
| 22 | void atafb_iplan2p4_fillrect(struct fb_info *info, u_long next_line, u32 color, | ||
| 23 | int sy, int sx, int height, int width); | ||
| 24 | void atafb_iplan2p4_linefill(struct fb_info *info, u_long next_line, | ||
| 25 | int dy, int dx, u32 width, | ||
| 26 | const u8 *data, u32 bgcolor, u32 fgcolor); | ||
| 27 | |||
| 28 | void atafb_iplan2p8_copyarea(struct fb_info *info, u_long next_line, int sy, int sx, int dy, | ||
| 29 | int dx, int height, int width); | ||
| 30 | void atafb_iplan2p8_fillrect(struct fb_info *info, u_long next_line, u32 color, | ||
| 31 | int sy, int sx, int height, int width); | ||
| 32 | void atafb_iplan2p8_linefill(struct fb_info *info, u_long next_line, | ||
| 33 | int dy, int dx, u32 width, | ||
| 34 | const u8 *data, u32 bgcolor, u32 fgcolor); | ||
| 35 | |||
| 36 | #endif /* _VIDEO_ATAFB_H */ | ||
