diff options
Diffstat (limited to 'libgui/gfx.c')
-rw-r--r-- | libgui/gfx.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/libgui/gfx.c b/libgui/gfx.c index 986ecda..d3a66f2 100644 --- a/libgui/gfx.c +++ b/libgui/gfx.c @@ -7,6 +7,7 @@ #include <bmp.h> #include <gfx.h> #include <mem.h> +#include <msg.h> #include <png.h> #include <psf.h> #include <str.h> @@ -98,9 +99,10 @@ 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(pidof(WM_PATH), GFX_NEW_CONTEXT, ctx); + msg_receive(&msg); + memcpy(ctx, msg.data, sizeof(*ctx)); return ctx; } |