diff options
author | Przemyslaw Marczak <p.marczak@samsung.com> | 2013-11-29 18:30:43 +0100 |
---|---|---|
committer | Minkyu Kang <mk7.kang@samsung.com> | 2014-02-03 15:36:14 +0900 |
commit | 903afe18bb272d6d5c12e0be22b0f8fd35fa6f1b (patch) | |
tree | 2018de2b62b273dec17860d58fc60370f4a988fc /include/lcd.h | |
parent | dca2a1c18576116b33c31ea4d1cd7a3812e3bf95 (diff) | |
download | u-boot-imx-903afe18bb272d6d5c12e0be22b0f8fd35fa6f1b.zip u-boot-imx-903afe18bb272d6d5c12e0be22b0f8fd35fa6f1b.tar.gz u-boot-imx-903afe18bb272d6d5c12e0be22b0f8fd35fa6f1b.tar.bz2 |
lib: tizen: change Tizen logo with the new one.
Changes:
- check image bpp instead of resolution when returns logo address
- remove 32bpp logo
- add 16bpp logo in two formats: bmp and gzipped bmp
- init logo address with "0" for unsupported bpp mode
- update boards configs with proper image size for gunzip
- extend structure vidinfo by two fields: logo_x_offset and logo_y_offset.
Signed-off-by: Przemyslaw Marczak <p.marczak@samsung.com>
Tested-by: Hyungwon Hwang <human.hwang@samsung.com>
Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
Diffstat (limited to 'include/lcd.h')
-rw-r--r-- | include/lcd.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/lcd.h b/include/lcd.h index 40e8d2a..d06d6f1 100644 --- a/include/lcd.h +++ b/include/lcd.h @@ -223,6 +223,8 @@ typedef struct vidinfo { unsigned int logo_on; unsigned int logo_width; unsigned int logo_height; + int logo_x_offset; + int logo_y_offset; unsigned long logo_addr; unsigned int rgb_mode; unsigned int resolution; |