19 lines
622 B
Bash
Executable File
19 lines
622 B
Bash
Executable File
#!/bin/sh -ex
|
|
# Copyright 2023 Johannes Marbach
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
npm i
|
|
|
|
./node_modules/lv_img_conv/lv_img_conv.js -f \
|
|
-i ul_cursor_img_dsc \
|
|
-c CF_TRUE_COLOR_ALPHA \
|
|
-o cursor.c \
|
|
cursor.png
|
|
|
|
# Once we migrate to LVGL master (https://github.com/lvgl/lvgl/issues/4011), we'll need to manually
|
|
# replace the old constants since the image converter hasn't yet been updated
|
|
# sed 's.LV_IMG_CF_TRUE_COLOR_ALPHA.LV_COLOR_FORMAT_NATIVE_ALPHA.g' cursor.c \
|
|
# | sed 's.LV_IMG_PX_SIZE_ALPHA_BYTE.LV_COLOR_FORMAT_NATIVE_ALPHA_SIZE.g' \
|
|
# > cursor.c.tmp
|
|
# mv cursor.c.tmp cursor.c
|