diff options
Diffstat (limited to 'payloads')
-rw-r--r-- | payloads/libpayload/drivers/video/graphics.c | 15 | ||||
-rw-r--r-- | payloads/libpayload/include/cbgfx.h | 12 |
2 files changed, 27 insertions, 0 deletions
diff --git a/payloads/libpayload/drivers/video/graphics.c b/payloads/libpayload/drivers/video/graphics.c index d4d08f8fc8..c26147333f 100644 --- a/payloads/libpayload/drivers/video/graphics.c +++ b/payloads/libpayload/drivers/video/graphics.c @@ -5,6 +5,7 @@ */ #include <libpayload.h> +#include <cbfs.h> #include <sysinfo.h> #include "bitmap.h" @@ -145,6 +146,20 @@ static int cbgfx_init(void) return 0; } +void *load_bitmap(const char *name, size_t *size) +{ + static struct cbfs_media media; + static int cbfs_media_initialized = 0; + if (!cbfs_media_initialized) { + if (init_default_cbfs_media(&media)) { + printf("Failed to initialize default media\n"); + return NULL; + } + } + cbfs_media_initialized = 1; + return cbfs_get_file_content(&media, name, CBFS_TYPE_RAW, size); +} + int draw_box(const struct rect *box, const struct rgb_color *rgb) { struct vector top_left; diff --git a/payloads/libpayload/include/cbgfx.h b/payloads/libpayload/include/cbgfx.h index 3c28a13cb4..cb037a0897 100644 --- a/payloads/libpayload/include/cbgfx.h +++ b/payloads/libpayload/include/cbgfx.h @@ -74,6 +74,18 @@ struct rgb_color { */ /* + * Load a bitmap file from cbfs + * + * Memory is allocated automatically and it's caller's responsibility to free it + * + * name: name of the bitmap file + * size: (OUT) size of the image + * + * return: pointer to the image data in memory or NULL on error + */ +void *load_bitmap(const char *name, size_t *size); + +/* * draw a box filled with a color on screen * * box: .offset points the coordinate of the top left corner and .size specifies |