diff options
author | Marvin Borner | 2020-11-28 12:33:52 +0100 |
---|---|---|
committer | Marvin Borner | 2020-11-28 12:33:52 +0100 |
commit | baa5c8716372f29b2e1340601282c44d7c5da7e9 (patch) | |
tree | 7f17968642d7165b28fcd218d89b32f4f9867736 | |
parent | a1dbc858d40b2394e23511aa111ec6590b5fb8c7 (diff) |
Made relative window registring local
-rw-r--r-- | libgui/gui.c | 11 |
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; |