aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarvin Borner2020-11-28 12:33:52 +0100
committerMarvin Borner2020-11-28 16:12:59 +0100
commit344d077a56ac21f4e63bcf0ff4eff234a4ac19e1 (patch)
treeae28ffa10429e93222e4747c2af3347941124e88
parent72502ccae6c52a094ae918e27bb73243689dcf34 (diff)
Made relative window registring local
-rw-r--r--libgui/gui.c11
1 files changed, 10 insertions, 1 deletions
diff --git a/libgui/gui.c b/libgui/gui.c
index 4b28114..1e22e8c 100644
--- a/libgui/gui.c
+++ b/libgui/gui.c
@@ -36,7 +36,16 @@ static struct window *new_window(const char *title, int x, int y, u32 width, u32
win->id = window_count + 1;
win->title = title;
win->childs = list_new();
- gfx_new_ctx(win->ctx);
+
+ if (win->ctx->flags & WF_RELATIVE) {
+ win->ctx->pid = getpid();
+ win->ctx->bpp = 32; // TODO: Dynamic bpp
+ win->ctx->pitch = win->ctx->width * (win->ctx->bpp >> 3);
+ win->ctx->fb = malloc(win->ctx->height * win->ctx->pitch);
+ memset(win->ctx->fb, 0, win->ctx->height * win->ctx->pitch);
+ } else {
+ gfx_new_ctx(win->ctx);
+ }
if (!win->ctx->fb)
return NULL;