diff options
author | Marvin Borner | 2021-02-25 17:42:46 +0100 |
---|---|---|
committer | Marvin Borner | 2021-02-25 17:42:46 +0100 |
commit | 34885f1c73824a0fe47aa095e9d55a57021239d2 (patch) | |
tree | b59dfe47069d1f42bd8123e647fadf74bff835a6 /apps/wm.c | |
parent | b85ba196c47920b9d1b6622718a34f8f6f23bef3 (diff) |
Added *many* static keywords
Diffstat (limited to 'apps/wm.c')
-rw-r--r-- | apps/wm.c | 10 |
1 files changed, 6 insertions, 4 deletions
@@ -102,12 +102,12 @@ static struct window *window_find(u32 id) return NULL; } -static void window_destroy(struct window *win) +/*static void window_destroy(struct window *win) { - /* free(win->name); */ + //free(win->name); free(win->ctx.fb); free(win); -} +}*/ // Beautiful static void windows_at_rec(vec2 pos1, vec2 pos2, struct list *list) @@ -189,13 +189,15 @@ static struct rectangle rectangle_at(vec2 pos1, vec2 pos2, struct window *exclud start_x = 0; } } + u32 start_y = 0; + u32 end_y = height; u8 *srcfb = &win->ctx.fb[(pos.x + start_x) * bypp + pos.y * win->ctx.pitch]; u8 *destfb = &data[start_x * bypp]; // Copy window data to rectangle buffer - for (u32 cy = start_y; cy < height; cy++) { + for (u32 cy = start_y; cy < end_y; cy++) { int diff = 0; for (u32 cx = start_x; cx < end_x; cx++) { if (srcfb[bypp - 1]) |