diff options
author | Daisuke Nojiri <dnojiri@chromium.org> | 2015-10-14 09:41:02 -0700 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2015-10-27 15:22:53 +0100 |
commit | dcc63b6cb7dc60035235a97fd7bab51ed956ff54 (patch) | |
tree | f77b9c4e3262cd5a943351bf08f942d1dd4485cc /payloads/libpayload/include | |
parent | 20b790704155f6af8306156c450c8ca029763acd (diff) |
cbgfx: remove load_bitmap
load_bitmap is no longer needed.
BUG=none
BRANCH=master
TEST=Tested on Samus
CQ-DEPEND=CL:305589
Change-Id: I4e598ade20a5d49850f9ad0f13681ea5d16cd8c7
Signed-off-by: Patrick Georgi <pgeorgi@google.com>
Original-Commit-Id: 125bbc98195cbb8378ba0e4c7fece85ffca4cdfa
Original-Change-Id: I64d685f7a6367b03455ae2a206b9936613614a24
Original-Signed-off-by: Daisuke Nojiri <dnojiri@chromium.org>
Original-Reviewed-on: https://chromium-review.googlesource.com/305517
Original-Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Reviewed-on: http://review.coreboot.org/11930
Tested-by: build bot (Jenkins)
Diffstat (limited to 'payloads/libpayload/include')
-rw-r--r-- | payloads/libpayload/include/cbgfx.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/payloads/libpayload/include/cbgfx.h b/payloads/libpayload/include/cbgfx.h index 4ab4943075..7ae966dcc9 100644 --- a/payloads/libpayload/include/cbgfx.h +++ b/payloads/libpayload/include/cbgfx.h @@ -74,18 +74,6 @@ 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 |