diff options
author | Marvin Borner | 2020-08-27 18:06:27 +0200 |
---|---|---|
committer | Marvin Borner | 2020-08-27 18:06:27 +0200 |
commit | fa2d52e708b3f33008d60f5fbea3e2e954f1db6f (patch) | |
tree | 01bcf76369c580b09e05fdceabdc981234cef15e /apps/test.c | |
parent | 3f1668290da19734dcbfed633b6f415d1fa21a1a (diff) |
Added alpha channel and cursor image
Diffstat (limited to 'apps/test.c')
-rw-r--r-- | apps/test.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/apps/test.c b/apps/test.c index 93ee07a..6585c33 100644 --- a/apps/test.c +++ b/apps/test.c @@ -12,15 +12,12 @@ int main() struct window *win = gui_new_window(); - const u32 background[3] = { 0x28, 0x2c, 0x34 }; - gui_fill(win, background); - const u32 border[3] = { 0xab, 0xb2, 0xbf }; - gui_border(win, border, 2); - const u32 text[3] = { 0xab, 0xb2, 0xbf }; + gui_fill(win, BG_COLOR); + gui_border(win, FG_COLOR, 2); gui_init("/font/spleen-12x24.psfu"); char *hello = "Hello, world!"; - gui_write(win, win->width / 2 - (strlen(hello) * 12) / 2, 5, text, hello); + gui_write(win, win->width / 2 - (strlen(hello) * 12) / 2, 5, FG_COLOR, hello); while (1) { yield(); |