From c2cccf6f2ef4f6f8c828074e68be2d95255a89b5 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sun, 23 Aug 2020 15:49:22 +0200 Subject: Added bmp loading and other stuff --- apps/test.c | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'apps/test.c') diff --git a/apps/test.c b/apps/test.c index dd85ffd..3bbe824 100644 --- a/apps/test.c +++ b/apps/test.c @@ -11,12 +11,8 @@ int main() struct message *msg = msg_receive_loop(); struct window *win = (struct window *)msg->data; - // TODO: Fix window transmitting - printf("\nReceived %d from %d\n", win->x, msg->src); - printf("Received %d from %d\n", win->y, msg->src); - printf("Received %d from %d\n", win->width, msg->src); - printf("Received %d from %d\n", win->height, msg->src); - printf("Received %d from %d\n", win->fb, msg->src); + const u32 color[3] = { 0xff, 0, 0 }; + gui_fill(win, color); while (1) { }; -- cgit v1.2.3