]> Joshua Wise's Git repositories - netwatch.git/blobdiff - include/fb.h
Link text into copy_pixels.
[netwatch.git] / include / fb.h
index dd868948071b823966d2d8af260838597b51ca9e..79f05b510ab2f282775f4f695003b8b04873a75d 100644 (file)
@@ -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;
@@ -25,6 +26,7 @@ struct fbdevice {
        void *priv;
        getvmode_t getvmode;
        checksum_rect_t checksum_rect;
+       copy_pixels_t copy_pixels;
        struct vmode curmode;
 };
 
This page took 0.022024 seconds and 4 git commands to generate.