Lines Matching full:or
5 … drawing happens in LVGL to add customization, make it easier to find bugs or just out of curiosit…
33 - LVGL checks the invalid areas and joins those that are adjacent or intersecting.
45 …he first is sent to `flush_cb` because the flushing should be done by DMA (or similar hardware) in…
54 LVGL performs the following steps to render any shape, image or text. It can be considered as a dra…
61 5. **Blend a color or image** During blending, masking (make some pixels transparent or opaque), bl…
64 - `LV_DRAW_MASK_TYPE_LINE` Removes a side from a line (top, bottom, left or right). `lv_draw_line` …
66 - `LV_DRAW_MASK_TYPE_RADIUS` Removes the inner or outer corners of a rectangle with a radiused tran…
92 4. Remove the mask from the draw engine with `lv_draw_mask_remove_id(mask_id)` or `lv_draw_mask_rem…
102 Some fields of these parameters can be modified to draw something else or any custom drawing operat…
105 …u can, for example, tell LVGL to use different colors on a specific button or to manually draw an …
122 For example you can add a custom text or an image.
148 When LVGL draws a part of an object (e.g. a slider's indicator, a table's cell or a button matrix's…
149 This allows changing the parts on a very low level with masks, extra drawing, or changing the param…
160 … // The index of the part. E.g. a button's index on button matrix or table cell index.
171 … // A point calculated during drawing. E.g. a point of a chart or the center of an arc.
183 …ing of a part. This is a good place to modify the draw descriptors (e.g. `rect_dsc`), or add masks.
187 Finish the drawing of a part. This is a good place to draw extra content on the part or remove mask…
193 This event is used to check whether an object fully covers an area or not.
204 - It's an ARGB or chroma keyed image
210 Before sending this event LVGL checks if at least the widget's coordinates fully cover the area or …