X-Git-Url: http://git.joshuawise.com/netwatch.git/blobdiff_plain/4a4bc0fa423f2c3ffc37adb7f8c7c221d1a9ac82..78a5ce51491a8657860a253832ad47618ea86a75:/include/fb.h diff --git a/include/fb.h b/include/fb.h index 19dae0b..79f05b5 100644 --- a/include/fb.h +++ b/include/fb.h @@ -12,6 +12,7 @@ typedef enum { typedef void (*getvmode_t)(void *); typedef uint32_t (*checksum_rect_t)(int x, int y, int width, int height); +typedef void (*copy_pixels_t)(char *buf, int x, int y, int width, int height); struct vmode { int text:1; @@ -21,9 +22,11 @@ struct vmode { struct fbdevice { unsigned char *fbaddr; + unsigned char *textbase; /* A safe place to put a textfb. */ void *priv; getvmode_t getvmode; checksum_rect_t checksum_rect; + copy_pixels_t copy_pixels; struct vmode curmode; };