aboutsummaryrefslogtreecommitdiff
path: root/libgui/bmp.c
diff options
context:
space:
mode:
authorMarvin Borner2020-11-20 23:04:20 +0100
committerMarvin Borner2020-11-20 23:04:20 +0100
commit33d3ac6b5302f5e3a23cc7e318cf1f0605c398e5 (patch)
tree9ec2013b430e0ad1d21690c5247e687c63d84b76 /libgui/bmp.c
parent38e0d413e38838979978d6ff3fdbaf577a916fd0 (diff)
Ported upng library
This results in a faster boot and smaller files.
Diffstat (limited to 'libgui/bmp.c')
-rw-r--r--libgui/bmp.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libgui/bmp.c b/libgui/bmp.c
index 25745a7..3097e99 100644
--- a/libgui/bmp.c
+++ b/libgui/bmp.c
@@ -16,6 +16,7 @@ struct bmp *bmp_load(const char *path)
if (h->signature[0] != 'B' || h->signature[1] != 'M')
return NULL;
+ // TODO: Support padding with odd widths
struct bmp_info *info = (struct bmp_info *)((u32)buf + sizeof(*h));
struct bmp *bmp = malloc(sizeof(*bmp));
bmp->width = info->width;