aboutsummaryrefslogtreecommitdiff
path: root/src/inc/vesa.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/inc/vesa.h')
-rw-r--r--src/inc/vesa.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/inc/vesa.h b/src/inc/vesa.h
index c4863f1..e1ea521 100644
--- a/src/inc/vesa.h
+++ b/src/inc/vesa.h
@@ -44,7 +44,12 @@ struct vbe {
};
struct vbe *vbe;
+int vbe_bpl;
+int vbe_pitch;
+u8 *fb;
-void vesa_fill(const u8 color[3]);
+void vesa_fill(const u32 color[3]);
+void vesa_set_pixel(u16 x, u16 y, const u32 color[3]);
+void vesa_init(struct vbe *info);
#endif