summaryrefslogtreecommitdiff
path: root/src/drivers/video/vga.h
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2017-06-16 17:10:48 +0200
committerAndreas Baumann <mail@andreasbaumann.cc>2017-06-16 17:10:48 +0200
commitb6f1311502f48a091dd51bd7443105963071af9a (patch)
tree150aacd5f67e2c53f811dd65112a6731d654b8cb /src/drivers/video/vga.h
parent066aeb4588db4e42e06d98cca7ceb8ae1e825cab (diff)
downloadabaos-b6f1311502f48a091dd51bd7443105963071af9a.tar.gz
abaos-b6f1311502f48a091dd51bd7443105963071af9a.tar.bz2
first character printed in graphics mode
Diffstat (limited to 'src/drivers/video/vga.h')
-rw-r--r--src/drivers/video/vga.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/drivers/video/vga.h b/src/drivers/video/vga.h
index 69b4591..8b7ebdc 100644
--- a/src/drivers/video/vga.h
+++ b/src/drivers/video/vga.h
@@ -63,5 +63,6 @@ vga_color_t vga_make_RGB( int R, int G, int B );
void vga_set_pixel( vga_t *vga, const int x, const int y, const vga_color_t color );
void vga_draw_rectangle( vga_t *vga, const int x, const int y, const int w, const int h, const vga_color_t color );
void vga_clear_screen( vga_t *vga, const vga_color_t color );
+void vga_draw_char( vga_t *vga, const unsigned char c, const int x, const int y, const vga_color_t background, const vga_color_t foreground );
#endif // VGA_H