aboutsummaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorMarvin Borner2021-02-25 17:42:46 +0100
committerMarvin Borner2021-02-25 17:42:46 +0100
commit34885f1c73824a0fe47aa095e9d55a57021239d2 (patch)
treeb59dfe47069d1f42bd8123e647fadf74bff835a6 /apps
parentb85ba196c47920b9d1b6622718a34f8f6f23bef3 (diff)
Added *many* static keywords
Diffstat (limited to 'apps')
-rw-r--r--apps/test.c16
-rw-r--r--apps/wm.c10
2 files changed, 14 insertions, 12 deletions
diff --git a/apps/test.c b/apps/test.c
index c448ceb..a44451c 100644
--- a/apps/test.c
+++ b/apps/test.c
@@ -20,15 +20,15 @@
static u32 failed;
-void pass_or_fail(const char *file_name, int line_num, const char *func, const char *first,
- const char *second, int success)
+static void pass_or_fail(const char *file_name, int line_num, const char *func, const char *first,
+ const char *second, int success)
{
failed += success ? 0 : 1;
log("\x1B[%s\x1B[0m %s:%d: %s: %s == %s\n", success ? "32m[PASS]" : "31m[FAIL]", file_name,
line_num, func, first, second);
}
-void test_malloc()
+static void test_malloc()
{
// TODO: More tests!
/* u32 *a = malloc(a_mag); */
@@ -38,14 +38,14 @@ void test_malloc()
/* equals(b[-1], b_mag); */
}
-void test_math()
+static void test_math()
{
equals(pow(2, 3), 8);
equals(pow(0, 3), 0);
equals(pow(0, 0), 1);
}
-void test_conv()
+static void test_conv()
{
char buf1[1] = { 0 };
char buf2[7] = { 0 };
@@ -61,7 +61,7 @@ void test_conv()
equals_str(conv_base(0xffffffff, buf4, 10, 1), "-1");
}
-void test_mem()
+static void test_mem()
{
const char *str0 = "";
const char *str1 = "";
@@ -74,10 +74,10 @@ void test_mem()
equals(memcmp(str0, str1, strlen(str0)), 0);
equals(memcmp(NULL, NULL, 0), 0);
- char buf[6];
+ char buf[6] = { 0 };
equals_str(memcpy(buf, "hallo", 6), "hallo");
- char buf2[6];
+ char buf2[6] = { 0 };
equals_str(memset(buf2, 'x', 5), "xxxxx");
}
diff --git a/apps/wm.c b/apps/wm.c
index 348667d..6e80f5f 100644
--- a/apps/wm.c
+++ b/apps/wm.c
@@ -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])