1
0
mirror of https://github.com/lvgl/lvgl.git synced 2025-01-28 07:03:00 +08:00

Switch from size_t to uint32_t

This commit is contained in:
Themba Dube 2019-07-02 14:26:52 -04:00
parent 9ad51e529e
commit 27155720d5

View File

@ -162,7 +162,7 @@ void lv_img_buf_free(lv_img_dsc_t *dsc);
* @param cf color format
* @return size in bytes
*/
static inline size_t lv_img_buf_get_img_size(lv_coord_t w, lv_coord_t h, lv_img_cf_t cf)
static inline uint32_t lv_img_buf_get_img_size(lv_coord_t w, lv_coord_t h, lv_img_cf_t cf)
{
switch(cf) {
case LV_IMG_CF_TRUE_COLOR: return LV_IMG_BUF_SIZE_TRUE_COLOR(w, h);