aboutsummaryrefslogtreecommitdiff
path: root/libgui/gfx.c
diff options
context:
space:
mode:
authorMarvin Borner2021-01-10 13:19:50 +0100
committerMarvin Borner2021-01-10 13:19:50 +0100
commit3619c820f8ff5918cf122a031bde6305d32f6528 (patch)
tree2eb38cc5bfd51529a5e5c603ee9801569307ff17 /libgui/gfx.c
parentff9c7766edded74f4d522484c828b1bdc7dfa96d (diff)
Started procfs
Diffstat (limited to 'libgui/gfx.c')
-rw-r--r--libgui/gfx.c6
1 files changed, 3 insertions, 3 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;
}