diff options
author | Marvin Borner | 2020-08-23 15:49:22 +0200 |
---|---|---|
committer | Marvin Borner | 2020-08-23 15:49:22 +0200 |
commit | c2cccf6f2ef4f6f8c828074e68be2d95255a89b5 (patch) | |
tree | e04d17c13c872e976ff09a066f42a5eaf9e437ea /apps/test.c | |
parent | b1faf9042c5104d7dafc7d880817def934086ddb (diff) |
Added bmp loading and other stuff
Diffstat (limited to 'apps/test.c')
-rw-r--r-- | apps/test.c | 8 |
1 files changed, 2 insertions, 6 deletions
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) { }; |