diff options
Diffstat (limited to 'libgui')
-rw-r--r-- | libgui/gfx.c | 6 | ||||
-rw-r--r-- | libgui/gui.c | 8 | ||||
-rw-r--r-- | libgui/inc/gfx.h | 5 |
3 files changed, 10 insertions, 9 deletions
diff --git a/libgui/gfx.c b/libgui/gfx.c index b93ee62..986ecda 100644 --- a/libgui/gfx.c +++ b/libgui/gfx.c @@ -98,9 +98,9 @@ static void draw_rectangle(struct context *ctx, int x1, int y1, int x2, int y2, struct context *gfx_new_ctx(struct context *ctx) { - struct message msg = { 0 }; - msg_send(2, GFX_NEW_CONTEXT, ctx); - memcpy(ctx, msg_receive_loop(&msg)->data, sizeof(*ctx)); + //struct message msg = { 0 }; + //msg_send(2, GFX_NEW_CONTEXT, ctx); + //memcpy(ctx, msg_receive_loop(&msg)->data, sizeof(*ctx)); return ctx; } diff --git a/libgui/gui.c b/libgui/gui.c index 8ab6260..9b49c2e 100644 --- a/libgui/gui.c +++ b/libgui/gui.c @@ -534,10 +534,10 @@ void gui_event_loop(struct element *container) struct message msg = { 0 }; struct element *focused = NULL; while (1) { - if (!msg_receive(&msg)) { - yield(); - continue; - } + /* if (!msg_receive(&msg)) { */ + yield(); + continue; + /* } */ switch (msg.type) { case GUI_KILL: { diff --git a/libgui/inc/gfx.h b/libgui/inc/gfx.h index d096005..718fd28 100644 --- a/libgui/inc/gfx.h +++ b/libgui/inc/gfx.h @@ -84,7 +84,8 @@ int gfx_font_width(enum font_type); * Wrappers */ -#define gfx_redraw() (msg_send(2, GFX_REDRAW, NULL)) // TODO: Partial redraw (optimization) -#define gfx_redraw_focused() (msg_send(2, GFX_REDRAW_FOCUSED, NULL)) +#define gfx_redraw() \ + (void)42 //(msg_send(2, GFX_REDRAW, NULL)) // TODO: Partial redraw (optimization) +#define gfx_redraw_focused() (void)42 //(msg_send(2, GFX_REDRAW_FOCUSED, NULL)) #endif |