diff options
Diffstat (limited to 'payloads/libpayload/include/cbgfx.h')
-rw-r--r-- | payloads/libpayload/include/cbgfx.h | 12 |
1 files changed, 12 insertions, 0 deletions
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 |