diff options
author | Marvin Borner | 2021-06-13 12:59:45 +0200 |
---|---|---|
committer | Marvin Borner | 2021-06-13 12:59:45 +0200 |
commit | 5053382808960f3209b3fd217fd6b20b240f0d38 (patch) | |
tree | f51dede9317c268ce3ce11b5ddaa8a1a9b7295cf /libs/libgui/bmp.c | |
parent | d832f9ddc9187c83a52a724d4ea39aea08de485b (diff) |
Added image viewer and blerp scaling
Diffstat (limited to 'libs/libgui/bmp.c')
-rw-r--r-- | libs/libgui/bmp.c | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/libs/libgui/bmp.c b/libs/libgui/bmp.c deleted file mode 100644 index 5576d16..0000000 --- a/libs/libgui/bmp.c +++ /dev/null @@ -1,29 +0,0 @@ -// MIT License, Copyright (c) 2020 Marvin Borner - -#include <def.h> -#include <libgui/bmp.h> -#include <mem.h> -#include <print.h> -#include <sys.h> - -struct bmp *bmp_load(const char *path) -{ - void *buf = sread(path); - if (!buf) - return NULL; - - struct bmp_header *h = buf; - 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->size.x = info->width; - bmp->size.y = info->height; - bmp->data = (u8 *)((u32)buf + h->offset); - bmp->bpp = info->bpp; - bmp->pitch = bmp->size.x * (bmp->bpp >> 3); - - return bmp; -} |