diff options
author | Daisuke Nojiri <dnojiri@chromium.org> | 2015-10-01 15:56:28 -0700 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2015-10-27 15:22:41 +0100 |
commit | 20b790704155f6af8306156c450c8ca029763acd (patch) | |
tree | 9a4cef621baa688f0d73c04eabc76dbcaee2fcac /payloads/libpayload/include | |
parent | 9aed1465d70c32e186c2c65e83240630453bf017 (diff) |
cbgfx: add get_image_dimension
get_image_dimension returns the width or height of the image projected on
canvas.
This is necessary for example when two images of different lengths have to
be placed side by side in the center of the canvas and the widths of the
images must be adjusted according to the height.
BUG=chromium:502066
BRANCH=tot
TEST=Tested on Samus
Change-Id: I119c83891f48046e888b6b526e63348e74f8b77c
Signed-off-by: Patrick Georgi <pgeorgi@google.com>
Original-Commit-Id: d1a97f0492eb02f906feb5b879b7b43518dfa4d7
Original-Change-Id: Ie13f7994d639ea1556f73690b6b6b413ae64223c
Original-Signed-off-by: Daisuke Nojiri <dnojiri@chromium.org>
Original-Reviewed-on: https://chromium-review.googlesource.com/304113
Original-Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Reviewed-on: http://review.coreboot.org/11929
Tested-by: build bot (Jenkins)
Diffstat (limited to 'payloads/libpayload/include')
-rw-r--r-- | payloads/libpayload/include/cbgfx.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/payloads/libpayload/include/cbgfx.h b/payloads/libpayload/include/cbgfx.h index 54d395395a..4ab4943075 100644 --- a/payloads/libpayload/include/cbgfx.h +++ b/payloads/libpayload/include/cbgfx.h @@ -148,3 +148,22 @@ int draw_bitmap(const void *bitmap, size_t size, */ int draw_bitmap_direct(const void *bitmap, size_t size, const struct vector *top_left); + +/** + * Get width and height of projected image + * + * @param[in] bitmap Pointer to the bitmap data, starting from file header + * @param[in] sz Size of the bitmap data + * @param[i/o] dim_rel Width and height of the image relative to the canvas + * width and height. They must not exceed 1 (=100%). + * On return, it contains automatically calculated width + * and/or height. + * + * @return CBGFX_* error codes + * + * It returns the width and height of the projected image. If the input height + * is zero, it's derived from the input width to keep the aspect ratio, and vice + * versa. If both are zero, the width and the height which can project the image + * in the original size are returned. + */ +int get_bitmap_dimension(const void *bitmap, size_t sz, struct scale *dim_rel); |