summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-graphics
Commit message (Collapse)AuthorAgeFilesLines
* lvgl: Deduplicate PACKAGECONFIG into lv-confMarek Vasut2024-03-223-2/+2
| | | | | | | | Move the default PACKAGECONFIG setting from both recipes into lv-conf.inc to avoid duplication. No functional change. Signed-off-by: Marek Vasut <marex@denx.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* lvgl: Drop unnecessary PV appendMarek Vasut2024-03-222-2/+0
| | | | | | | | | | The PV has been appended because the source has been pulled from git as of specific revision past 9.0.1 release of LVGL. The current source is pulled as of tagged release 9.1.0, drop the extra git suffix. Signed-off-by: Marek Vasut <marex@denx.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* lvgl: Drop superfluous ALLOW_EMPTYMarek Vasut2024-03-221-2/+0
| | | | | | | | This ALLOW_EMPTY was a workaround for LVGL built as static library. The lvgl is now built as shared library, drop this remnant. Signed-off-by: Marek Vasut <marex@denx.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* lvgl: Update to 9.1.0Marek Vasut2024-03-203-40/+2
| | | | | | | | Update LVGL to final 9.1.0 . Drop the XRGB8888 fix which is part of the release. Signed-off-by: Marek Vasut <marex@denx.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* lvgl: Reinstate demo configuration settingsMarek Vasut2024-03-201-0/+4
| | | | | | | | | | The LVGL demo is configured slightly differently than the LVGL itself. Logging and printing is enabled, memory size is higher and compressed fonts are enabled. Reinstate the settings, otherwise the demo keeps crashing at least with SDL2 backend. Signed-off-by: Marek Vasut <marex@denx.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* xrefresh: upgrade 1.0.7 -> 1.1.0Wang Mingyu2024-03-201-1/+1
| | | | | | | | | | | Changelog: ========== -Add -help option -Adding in a '-delay ms' parameter to optionally prolong refreshx gitlab CI: stop requiring Signed-off-by in commits Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* xmessage: upgrade 1.0.6 -> 1.0.7Wang Mingyu2024-03-201-1/+1
| | | | | | | | | | | | Changelog: =========== -configure: Use AC_SYS_LARGEFILE to enable large file support -Add -version option -updates -help option to not require successfully opening a display -Print which arguments were unknown before giving usage message Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libxaw: upgrade 1.0.15 -> 1.0.16Wang Mingyu2024-03-201-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* iceauth: upgrade 1.0.9 -> 1.0.10Wang Mingyu2024-03-201-1/+1
| | | | | | | | | | | | | | Changelog: ========== -gitlab CI: stop requiring Signed-off-by in commits -configure: Use AC_SYS_LARGEFILE to enable large file support -Use reallocarray if available, provide local version if not -Silence -Wanalyzer-out-of-bounds warnings from gcc 13 -Variable scope reductions, as suggested by cppcheck -unifdef __UNIXOS2__ Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* lvgl: cleanup sed expressionChristophe Chapuis2024-03-181-24/+24
| | | | | | | | | | | * use [[:space:]] instead of [ \t] * remove global replace, as there is only one instance to replace for each expression * use extended regular expressions and remove escape characters Signed-off-by: Christophe Chapuis <chris.chapuis@gmail.com> Reviewed-by: Marek Vasut <marex@denx.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* lvgl: make libdrm include conditionalChristophe Chapuis2024-03-183-4/+3
| | | | | | | | | | | | The libdrm include is only needed when "drm" is selected in PACKAGECONFIG. In addition, move the TARGET_CFLAG addition to lv-conf.inc, where the DRM configuration is actually selected for LVGL. Signed-off-by: Christophe Chapuis <chris.chapuis@gmail.com> Reviewed-by: Marek Vasut <marex@denx.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* lvgl: lv-conf.inc: generalize sed instructionsChristophe Chapuis2024-03-171-23/+23
| | | | | | | | | Use [ \t] to detect optionnal spaces at the beginning of each line, and after the define. Signed-off-by: Christophe Chapuis <chris.chapuis@gmail.com> Reviewed-by: Marek Vasut <marex@denx.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* lvgl: fix libdrm includeChristophe Chapuis2024-03-171-0/+2
| | | | | | | | | | When DRM is activated for LVGL, it adds a dependency on drm.h. As for lvgl-demo-fb, add an include path to fix this usecase. Signed-off-by: Christophe Chapuis <chris.chapuis@gmail.com> Acked-by: Martin Jansa <martin.jansa@gmail.com> Reviewed-by: Marek Vasut <marex@denx.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* lvgl: add more variables to lv-conf.incChristophe Chapuis2024-03-171-0/+17
| | | | | | | | | As it can be usefull to customize these other variables, let's add them in lv-conf.inc. Signed-off-by: Christophe Chapuis <chris.chapuis@gmail.com> Reviewed-by: Marek Vasut <marex@denx.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* lvgl: cleanup sed instructions in lv-conf.incChristophe Chapuis2024-03-171-14/+14
| | | | | | | | | Use back reference instead of repeating the search pattern. Later on this could lead to a more generic way of replacing values in the .h file. Signed-off-by: Christophe Chapuis <chris.chapuis@gmail.com> Reviewed-by: Marek Vasut <marex@denx.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* lvgl: remove useless FILES includeChristophe Chapuis2024-03-171-1/+0
| | | | | | | | | As ${includedir}${PN} is already listed in FILES, there is no need to add one of its subdirectories. Signed-off-by: Christophe Chapuis <chris.chapuis@gmail.com> Reviewed-by: Marek Vasut <marex@denx.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* lvgl: install lv_conf.hChristophe Chapuis2024-03-171-0/+5
| | | | | | | | | | Add an install append to copy the generated lv_conf.h as part of the lvgl package, so that it will be found and used by the recipes that want to use lvgl. Signed-off-by: Christophe Chapuis <chris.chapuis@gmail.com> Reviewed-by: Marek Vasut <marex@denx.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* lvgl: fix typo in lv-conf.incChristophe Chapuis2024-03-171-1/+1
| | | | | | | | | Fix a typo in the first sed instruction, where the #if 0 is never changed to #if 1 at the beginning of lv_conf.h. Signed-off-by: Christophe Chapuis <chris.chapuis@gmail.com> Reviewed-by: Marek Vasut <marex@denx.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* dietsplash: Update and fix build with muslKhem Raj2024-03-172-3/+32
| | | | Signed-off-by: Khem Raj <raj.khem@gmail.com>
* recipes: Drop remaining PR values from recipesMartin Jansa2024-03-1714-14/+0
| | | | | | | | | | | | * as oe-core did in: https://git.openembedded.org/openembedded-core/commit/?id=d4c346e8ab * when people are have to maintain own PRs for recipes in oe-core, they might add them for meta-oe recipes at the same time when upgrading to next LTS Signed-off-by: Martin Jansa <martin.jansa@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* lvgl: Generate proper shared libraries with version suffixMarek Vasut2024-03-173-2/+70
| | | | | | | | | | | | Add missing version suffix to shared libraries. Currently the filename of generated shared libraries is only liblvgl.so, which prevents coexistence of different versions of LVGL on the same system. Set VERSION and SOVERSION to make cmake add the version suffix to generated shared libraries. That changes the filename to liblvgl.so.9.0.0 and includes symlink with major ABI version, i.e. liblvgl.so.9 . Signed-off-by: Marek Vasut <marex@denx.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* lvgl: Fix dev-elf build QAKhem Raj2024-03-131-0/+2
| | | | | | | | | | | | | | lvgl does not produce versioned shared libraries Fixes ERROR: QA Issue: -dev package lvgl-dev contains non-symlink .so '/usr/lib/liblvgl_examples.so' -dev package lvgl-dev contains non-symlink .so '/usr/lib/liblvgl.so' -dev package lvgl-dev contains non-symlink .so '/usr/lib/liblvgl_thorvg.so' -dev package lvgl-dev contains non-symlink .so '/usr/lib/liblvgl_demos.so' [dev-elf] Signed-off-by: Khem Raj <raj.khem@gmail.com> Cc: Marek Vasut <marex@denx.de>
* lvgl: Replace sed patching with real patchesMarek Vasut2024-03-128-22/+337
| | | | | | | | Replace the current awful sed hacking with real patches bound for upstream. The sed hacking was simply not maintainable anymore. Signed-off-by: Marek Vasut <marex@denx.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* lvgl: Build shared libraryMarek Vasut2024-03-121-1/+1
| | | | | | | | | | Build LVGL as shared library instead of static library. In case there are multiple applications linking against LVGL, this is more efficient, and it also makes it possible to update only the LVGL library separately from the applications. Signed-off-by: Marek Vasut <marex@denx.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* lvgl: Default to XRGB8888 DRM framebufferMarek Vasut2024-03-122-0/+8
| | | | | | | | | | | | | | | The ARGB8888 framebuffer format for base canvas makes little sense as the base canvas is unlikely to be transparent and require alpha. Use XRGB8888 framebuffer format which is more widely supported by DRM drivers as base plane pixel format. This is identical to upstream fix for this issue which already landed: https://github.com/lvgl/lv_drivers/commit/c71e5f84bb2aebaed0644e31b8868bf90b199d32 The upstream fix just never made it into the LVGL 9.0.0 for some reason, an repeated upstream fix is being worked in now. Signed-off-by: Marek Vasut <marex@denx.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* lvgl: Configure assertions based on DEBUG_BUILDMarek Vasut2024-03-121-0/+8
| | | | | | | | | Configure all the LVGL assertions to enabled or disabled based on OE DEBUG_BUILD variable. This way, debug builds come with assertions which are expensive, while regular builds do not. Signed-off-by: Marek Vasut <marex@denx.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* lvgl: Add SDL2 fullscreen mode configuration optionMarek Vasut2024-03-121-0/+2
| | | | | | | | Expose SDL2 fullscreen mode as configuration option. The default is disabled, which matches the SDL2 backend configuration in LVGL. Signed-off-by: Marek Vasut <marex@denx.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* lvgl: Rename lv-drivers.inc to lv-conf.incMarek Vasut2024-03-123-2/+2
| | | | | | | | The lv-conf.inc is much more fitting name, since there is now only one configuration file and that is called lv_conf.h . No functional change. Signed-off-by: Marek Vasut <marex@denx.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* lvgl: Upgrade to LVGL 9 seriesMarek Vasut2024-03-127-171/+95
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Upgrade LVGL and matching recipes to LVGL 9 series. Use latest git HEAD instead of 9.0.0 release to pull in fixes which landed after the 9.0.0 release and which are of interest to Linux deployments. There are significant breaking changes, which are listed below. The lv-drivers and lv-lib-png PNG library seem to be part of the main LVGL repository, drop the now unnecessary recipes. Configuration is now done in lv_conf.h only, there is no more lv_drv_conf.h, rework lv-drivers.inc accordingly. USE_SDL_GPU support has been renamed to LV_USE_DRAW_SDL and newly depends on libsdl2-image, SDL_DOUBLE_BUFFERED to LV_SDL_BUF_COUNT=2 . All configuration options from lvgl_%.bb, LV_COLOR_DEPTH, LV_MEM_CUSTOM as well as LV_TICK_CUSTOM, LV_TICK_CUSTOM_INCLUDE, LV_TICK_CUSTOM_SYS_TIME_EX are all moved into lv-drivers.inc , so the configuration is done in one place, using the same set of configuration options. Wayland support is gone, drop it from lv-drivers.inc. Evdev input device selection via EVDEV_NAME is also gone, the selection is now done using API call lv_evdev_create(). DRM card selection via DRM_CARD is also gone, the selection is now done using API call lv_linux_drm_set_file(). Move LVGL_CONFIG_DRM_CARD into lvgl-demo-fb, which calls lv_linux_drm_set_file(). The lvgl-demo-fb recipe is adjusted to be compatible with LVGL 9 again, this makes some of the sed adjustments really awful, so this part will be replaced by upstream patches in a separate commit to avoid growing this commit even more. The lvgl-demo-fb recipe is also no longer using git submodules, but instead fetches both its source and LVGL using git fetcher separately. This is needed to build the SDL backend successfully, which requires newer LVGL than what the repository points to via its submodule. Signed-off-by: Marek Vasut <marex@denx.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* lvgl: Drop dialog-lvglMarek Vasut2024-03-123-133/+0
| | | | | | | | This recipe is barely compatible with LVGL 8.3, the repository seems to be unreachable now, drop the recipe. Signed-off-by: Marek Vasut <marex@denx.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* waylandpp: fix reproducibility issueMarkus Volk2024-03-101-0/+5
| | | | | | | remove STAGING_DIR_HOST and S from the waylandpp-targets.cmake file Signed-off-by: Markus Volk <f_l_k@t-online.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libvncserver: fix reproducibility issueMarkus Volk2024-03-091-0/+4
| | | | | | | remove STAGING_DIR_HOST from the LibVNCServerTargets.cmake file Signed-off-by: Markus Volk <f_l_k@t-online.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* neatvnc: upgrade 0.7.2 -> 0.8.0Wang Mingyu2024-03-081-2/+2
| | | | | | | | | | | | Changelog: =========== -Apple's Diffie-Hellman authentication (security type 30) has been fixed. -A new client connection no longer causes a DNS lookup. -Clients are now allowed to request more than 32 encodings -Zlib streams are now preserved when a client switches between encodings Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* opengl-es-cts: remove unused patchMaxin John2024-03-081-34/+0
| | | | | | | 0001-Remove-dead-variable-984.patch was a backport patch that was dropped after upgrade to version:3.2.9.3. Remove it as part of cleanup Signed-off-by: Maxin John <maxin.john@gmail.com>
* libei: upgrade 1.2.0 -> 1.2.1Wang Mingyu2024-02-191-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* recipes: drop remaining +gitr casesMartin Jansa2024-02-091-1/+1
| | | | | | | | | | | | | : drop 'r' from gitr and ${SRCPV} * +git is preferred over +gitr since 2012: https://lists.openembedded.org/g/openembedded-core/topic/72154716#16837 some recipes still use +gitr, because updating it would cause PV going backwards but without share PRservice the version-going-backwards QA issues are quite common and most people probably cannot depend on always-increasing version number already Signed-off-by: Martin Jansa <martin.jansa@gmail.com>
* recipes: drop ${SRCPV} usageMartin Jansa2024-02-097-7/+7
| | | | | | | | | | * Drop SRCPV similarly like oe-core did in: https://git.openembedded.org/openembedded-core/commit/?h=nanbield&id=843f82a246a535c353e08072f252d1dc78217872 * SRCPV is deferred now from PV to PKGV since: https://git.openembedded.org/openembedded-core/commit/?h=nanbield&id=a8e7b0f932b9ea69b3a218fca18041676c65aba0 Signed-off-by: Martin Jansa <martin.jansa@gmail.com>
* neatvnc: upgrade 0.7.1 -> 0.7.2Wang Mingyu2024-02-091-1/+1
| | | | | | | | | | Changelog: ============= -Clients are now allowed to request more than 32 encodings (#108) -Zlib streams are now preserved when a client switches between encodings Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* imlib2: upgrade 1.12.1 -> 1.12.2Wang Mingyu2024-02-091-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | Changelog: =========== -Y4M loader: fix support for unexpected framerates -Y4M loader: fix C option analysis -Y4M loader: add error messages on parsing errors -test_save: Update crcs for jxl saver (libjxl 0.8.0) -x11_grab: Remove some obsolete code -Y4M loader: Guard some debug code properly -Consistently use #if IMLIB2_DEBUG (not #ifdef) -test_load_2: Check some more y4m files -Y4M loader: Avoid use of sscanf() in frame rate parsing -ANI loader: Avoid debug line when image does not have proper signature -PNG loader: Properly suppress messages from libpng -Y4M loader: Fix warning in non-debug build -Change formatting style -PNG saver: Avoid potential issues around setjmp/longjmp -JPG saver: Fix error path -TIFF loader: Properly suppress messages from libtiff -savers: Fix error returns -PNG saver: avoid double-free on write errors -Y4M loader: don't fail on newline Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* vulkan-cts: Upgrade to 1.3.7.3Khem Raj2024-01-277-87/+139
| | | | | | | | Adjust for different patches between vulkan-cts and opengl-es-cts Use gcc to compile vulkan-cts for now, it does not like libc++ headers from clang-18 Signed-off-by: Khem Raj <raj.khem@gmail.com>
* vk-gl-cts: Disable Werror on amber external moduleKhem Raj2024-01-271-1/+1
| | | | | | | | | | | | | When compiling with clang-18 it finds more warnings which becomes errors so disable the warnings as errors in this module for now. Fixes /mnt/b/yoe/master/build/tmp/work/core2-64-yoe-linux/opengl-es-cts/3.2.9.3/git/external/amber/src/src/engine.cc:35:3: error: 'switch' missing 'default' label [-Werror,-Wswitch-default] 35 | switch (type) { | ^ 1 error generated. Signed-off-by: Khem Raj <raj.khem@gmail.com>
* tesseract: upgrade 5.3.3 -> 5.3.4Wang Mingyu2024-01-231-1/+1
| | | | | | | | | | | | | | | | Changelog: ============ * Fixes for scrollview * Fixes for autoconf, clang and sw builds * Improve OCR for an image URL * Fail on curl download errors * New parameter curl_cookiefile * Set User-Agent: header field in HTTP request for curl downloads * Output directory list from "combine_tessdata -d" to stdout * Other small improvements for code and documentation. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* dnfdragora: upgrade 2.1.5 -> 2.1.6Wang Mingyu2024-01-231-2/+2
| | | | | | | | Changelog: Fix issue #217 Update information' crash dnfdragora Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libdecor: upgrade 0.2.1 -> 0.2.2Wang Mingyu2024-01-221-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* feh: upgrade 3.10.1 -> 3.10.2Wang Mingyu2024-01-021-1/+1
| | | | | | | | Changelog: * Fix crash in right-click / menu rendering code on some distributions Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* cglm: upgrade 0.9.1 -> 0.9.2Wang Mingyu2024-01-021-1/+1
| | | | | | | | | | | | Changelog: =========== -add aabb2d -add euler to quat functionality -add new subtraction family of vector functions -many others improvements and bugfixes Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* fontforge: add a readline PACKAGECONFIGAlexander Kanavin2023-12-311-0/+2
| | | | | | | | This helps with build determinism; also if readline is not in sysroot but readline-native is, fontforge erroneously decides to build with it. Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* jasper: Fix install conflict when enable multilib.Wang Mingyu2023-12-291-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | Error: Transaction test error: file /usr/include/jasper/jas_config.h conflicts between attempted installs of lib32-jasper-dev-4.1.1-r0.armv7ahf_neon and jasper-dev-4.1.1-r0.cortexa57 The differences between the two files are as follows: @@ -44,10 +44,10 @@ /* #undef JAS_HAVE_INT128_T */ #define JAS_SIZEOF_INT 4 -#define JAS_SIZEOF_LONG 4 +#define JAS_SIZEOF_LONG 8 #define JAS_SIZEOF_LLONG 8 -#define JAS_SIZEOF_SIZE_T 4 -#define JAS_SIZEOF_SSIZE_T 4 +#define JAS_SIZEOF_SIZE_T 8 +#define JAS_SIZEOF_SSIZE_T 8 #define JAS_HAVE_FCNTL_H /* #undef JAS_HAVE_IO_H */ Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* renderdoc: no need to depend on vim-nativeRoss Burton2023-12-212-58/+1
| | | | | | | | | | Remove the patch to bring back the user of xxd from vim-native, the patch claimed that the cross-compiling rules were broken. However they work just fine if you tell it what compiler to use, as the default is "c++" and that isn't in HOSTTOOLS. Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* libei: upgrade 1.1.0 -> 1.2.0Wang Mingyu2023-12-181-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>