aboutsummaryrefslogtreecommitdiff
path: root/apps/test.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/test.c')
-rw-r--r--apps/test.c21
1 files changed, 13 insertions, 8 deletions
diff --git a/apps/test.c b/apps/test.c
index ee5792d..0fecbf4 100644
--- a/apps/test.c
+++ b/apps/test.c
@@ -1,3 +1,5 @@
+// MIT License, Copyright (c) 2020 Marvin Borner
+
#include <def.h>
#include <gui.h>
#include <print.h>
@@ -6,15 +8,18 @@ int main()
{
print("[test loaded]\n");
- /* struct window *win = gui_new_window(); */
- /* msg_send(1, MSG_NEW_WINDOW, NULL); */
- /* struct message *msg = msg_receive_loop(); */
- /* struct window *win = (struct window *)msg->data; */
-
- /* const u32 color[3] = { 0xff, 0, 0 }; */
- /* gui_fill(win, color); */
+ struct window *win = gui_new_window();
+ u32 color[3] = { 0xff, 0, 0 };
+ gui_fill(win, color);
+ u32 last_time = 0;
while (1) {
- };
+ u32 current_time = time();
+ if (current_time - last_time > 1000 / 60) { // 60Hz
+ win->x += 10;
+ };
+ last_time = current_time;
+ yield();
+ }
return 0;
}