aboutsummaryrefslogtreecommitdiff
path: root/libgui/inc
diff options
context:
space:
mode:
authorMarvin Borner2020-08-26 15:07:01 +0200
committerMarvin Borner2020-08-26 15:07:01 +0200
commitae31470ce5d666981ab1fe50cb2b4b38ca4b113f (patch)
tree2a0106921a4fd6e2b7854bba949a4fa16c6b992e /libgui/inc
parentdb64897e79c92f7655fde53564e264d8c42dcd41 (diff)
Some optimizations and window moving
Diffstat (limited to 'libgui/inc')
-rw-r--r--libgui/inc/gui.h3
-rw-r--r--libgui/inc/vesa.h4
2 files changed, 2 insertions, 5 deletions
diff --git a/libgui/inc/gui.h b/libgui/inc/gui.h
index e228772..6244e22 100644
--- a/libgui/inc/gui.h
+++ b/libgui/inc/gui.h
@@ -29,6 +29,7 @@ struct window {
void gui_write_char(struct window *win, int x, int y, const u32 c[3], char ch);
void gui_write(struct window *win, int x, int y, const u32 c[3], char *text);
void gui_load_wallpaper(struct window *win, char *path);
+void gui_copy(struct window *dest, struct window *src, int x, int y, u32 width, u32 height);
void gui_win_on_win(struct window *dest, struct window *src, int x, int y);
void gui_draw_rectangle(struct window *win, int x1, int y1, int x2, int y2, const u32 c[3]);
void gui_fill(struct window *win, const u32 c[3]);
@@ -41,5 +42,5 @@ void gui_init(char *font_path);
#define gui_new_window() \
(msg_send(2, MSG_NEW_WINDOW, NULL), (struct window *)msg_receive_loop()->data)
-#define gui_redraw() (msg_send(2, MSG_REDRAW, NULL)) // TODO: Partial redraw (optimisation)
+#define gui_redraw() (msg_send(2, MSG_REDRAW, NULL)) // TODO: Partial redraw (optimization)
#endif
diff --git a/libgui/inc/vesa.h b/libgui/inc/vesa.h
index bd758a5..892bd89 100644
--- a/libgui/inc/vesa.h
+++ b/libgui/inc/vesa.h
@@ -43,8 +43,4 @@ struct vbe {
u8 reserved1[206];
};
-void vesa_draw_rectangle(struct vbe *vbe, int x1, int y1, int x2, int y2, const u32 color[3]);
-void vesa_fill(struct vbe *vbe, const u32 color[3]);
-void vesa_set_pixel(struct vbe *vbe, u16 x, u16 y, const u32 color[3]);
-
#endif