* feat(textarea): Make it possible to customise the bullet character
This adds functions to allow overriding the default bullet character
with a custom one (or even no character at all).
* Update docs/widgets/core/textarea.md
Co-authored-by: Gabor Kiss-Vamosi <kisvegabor@gmail.com>
Co-authored-by: Gabor Kiss-Vamosi <kisvegabor@gmail.com>
* feat(pxp/vglite) Attach NXP GPUs to the new draw context.
Create a single NXP draw layer on top of PXP and VGLITE.
Extra changes:
1. Add VGLITE image blits acceleration.
2. Reenable blit split workaround for quality issue in RT500.
3. Increase threshold from 32 to 5000 px to fill/blit with both PXP and VGLITE.
4. Allow to enable both PXP and VGLITE. Add a fallback mechanism:
- by default the PXP will try to accelerate. if that is not supported (or fails
due to threshold limit condition from 3.) then it will fallback to VGLITE.
- if VGLITE does not support that feature (or fails due to threshold limit
condition from 3.) the it will fallback to CPU.
Signed-off-by: Nicușor Cîțu <nicusor.citu@nxp.com>
* feat(vglite) Add VGLITE support to draw the backgroud of rectangles.
optim: draw only a circle when radius has value LV_RADIUS_CIRCLE.
optim: to draw rounded corners, use cubic bezier curves
Signed-off-by: Seb Fagard <sebastien.fagard@nxp.com>
Signed-off-by: Nicușor Cîțu <nicusor.citu@nxp.com>
* feat(vglite) Add VGLITE support to draw arcs.
Use up to 4 bezier curves to optimize the drawing of an arc.
The arc curve has to be constant when growing the angle:
for this we compute sub-arc based on a best approximation of quarter-arc.
use dichotomy to find the sub-arc 't' param, instead of tangent approximation.
Signed-off-by: Seb Fagard <sebastien.fagard@nxp.com>
Signed-off-by: Nicușor Cîțu <nicusor.citu@nxp.com>
* feat(pxp) Add ARGB88888 format support for PXP backend.
Supports per pixel and global alpha blending, and combination of alpha blending with recolor feature.
Signed-off-by: Jerome Evillard <jerome.evillard@nxp.com>
Signed-off-by: Seb Fagard <sebastien.fagard@nxp.com>
Signed-off-by: Nicușor Cîțu <nicusor.citu@nxp.com>
* feat(vglite) Add the support of ARGB 32bits color format.
Signed-off-by: Seb Fagard <sebastien.fagard@nxp.com>
Signed-off-by: Nicușor Cîțu <nicusor.citu@nxp.com>
* feat(vglite) Add VGLITE acceleration support for rotation and zoom.
Signed-off-by: Seb Fagard <sebastien.fagard@nxp.com>
Signed-off-by: Nicușor Cîțu <nicusor.citu@nxp.com>
* feat(pxp) Add PXP acceleratin to rotate in blit.
Applies the rotation on the pxp output.
Signed-off-by: Seb Fagard <sebastien.fagard@nxp.com>
Signed-off-by: Nicușor Cîțu <nicusor.citu@nxp.com>
* fix(pxp/vglite) Avoid calling the blend callback from image decoded callback.
Add lv_gpu_nxp_pxp_blit_transform() and lv_gpu_nxp_vglite_blit_transform().
This will simplify a lot the fallback mechanism and the way of adding new
image decoded features.
(MGG-884)
Signed-off-by: Nicușor Cîțu <nicusor.citu@nxp.com>
* feat(pxp) Add image rotate 90x.
Simplify the two steps process by adding the blit_cover and blit_opa functions.
In order to rotate or recolor with opacity, two steps must be fallowed:
1. Run the operation without opa.
2. Blend the result by applying the opa.
(MGG-469)
Obs:
Recolor and rotate is currently not supported with opa or alpha channel.(MGG-883)
Signed-off-by: Nicușor Cîțu <nicusor.citu@nxp.com>
* fix(vglite) Fix incorrect slider widget indicator when vglite acceleration is enabled
(MGG-863)
Signed-off-by: Stefan Babatie <stefan.babatie@nxp.com>
Signed-off-by: Nicușor Cîțu <nicusor.citu@nxp.com>
* fix(pxp) Fix pxp fill (simple rect draw) on 32 bit color depth.
(MGG-890)
Signed-off-by: Stefan Babatie <stefan.babatie@nxp.com>
* fix(pxp) Separate blit simple by the blit with transformation.
While we run into blit with transformation we have to
decide if the operation needs to be done in one or two steps.
Blit with color format (opa or alpha or chroma key) - require one step: blit_cf().
Blit with rotate or recolor but no color format - require one step: blit_cover().
Blit with rotate or recolor + opa or alpha - require two steps:
blit_opa() = blit_cover() + blit_cf().
Blit with rotate or recolor + chroma key - not supported yet.
Signed-off-by: Nicușor Cîțu <nicusor.citu@nxp.com>
* feat(pxp) Add support for recolor with chroma-keying.
(MGG-434)
Signed-off-by: Stefan Babatie <stefan.babatie@nxp.com>
* fix(pxp) Fix temporary buffer allocation limit.
Signed-off-by: Nicușor Cîțu <nicusor.citu@nxp.com>
* fix(pxp) Add PXP limitation while rotating images not aligned to 16x16 blocks.
Signed-off-by: Nicușor Cîțu <nicusor.citu@nxp.com>
* fix(nxp) Add makefiles.
Tested with:
working-directory: tests/makefile
run: make test_file
Signed-off-by: Nicușor Cîțu <nicusor.citu@nxp.com>
* feat(nxp) Update NXP github documentation.
(MGG-864)
Signed-off-by: Nicușor Cîțu <nicusor.citu@nxp.com>
* fix(nxp) Move the API comments of global functions only in the H files to make maintenance simpler.
Signed-off-by: Nicușor Cîțu <nicusor.citu@nxp.com>
* fix(nxp/vglite) Fixed some warnings. Remove unused variables.
Signed-off-by: Nicușor Cîțu <nicusor.citu@nxp.com>
* fix(nxp) lv_draw_nxp_ctx_deinit() shall simply fallback to sofware call.
Signed-off-by: Nicușor Cîțu <nicusor.citu@nxp.com>
* fix(nxp) Fallback to software callbacks if need for argb8565 support.
During rendering, LVGL might initializes new draw_ctxs and start drawing into
a separate buffer (called layer). If the content to be rendered has "holes",
e.g. rounded corner, LVGL temporarily sets the disp_drv.screen_transp flag.
It means the renderers should draw into an ARGB buffer.
With 32 bit color depth it's not a big problem but with 16 bit color depth
the target pixel format is ARGB8565 which is not supported by the GPU.
In this case, the NXP callbacks should fallback to SW rendering.
Signed-off-by: Nicușor Cîțu <nicusor.citu@nxp.com>
* fix(pxp) Fix wrong demo widget transparency.
1. Fix alpha inverted calculation for fill with opacity.
2. Fix also the ratio of recoloring for chroma key.
Signed-off-by: Stefan Babatie <stefan.babatie@nxp.com>
* fix(vglite) Remove software pre-multiplication when hardware pre-multiplication is available.
(MGG-886)
Signed-off-by: Stefan Babatie <stefan.babatie@nxp.com>
* doc(vglite) Add vglite initialization info.
Signed-off-by: Nicușor Cîțu <nicusor.citu@nxp.com>
* fix(pxp/vglite) Fix unused variable warnings when PXP/VGLite are not enabled simultaneously.
Signed-off-by: Nicușor Cîțu <nicusor.citu@nxp.com>
* fix(pxp) Fixed the color key recoloring on 16 bits color depth.
1. Fixed the arguments of lv_color_mix(), previously was using an inversed logic. But it works anyway.
2. Use LV_COLOR_SET_X for adjusting the channels on both 16 and 32 bits. Fixed the max values.
Signed-off-by: Nicușor Cîțu <nicusor.citu@nxp.com>
Co-authored-by: Stefan Babatie <stefan.babatie@nxp.com>