Home
last modified time | relevance | path

Searched refs:clip (Results 1 – 15 of 15) sorted by relevance

/lvgl-3.7.0/src/draw/sdl/
Dlv_draw_sdl_img.c68 … const lv_draw_img_dsc_t * draw_dsc, const lv_area_t * coords, const lv_area_t * clip);
71 … const lv_draw_img_dsc_t * draw_dsc, const lv_area_t * coords, const lv_area_t * clip,
82 const lv_area_t * clip, SDL_Rect * clipped_src, SDL_Rect * clipped_dst);
100 const lv_area_t * clip = draw_ctx->clip_area; in lv_draw_sdl_img_core() local
130 lv_area_t t_coords = zoomed_cords, t_clip = *clip, apply_area; in lv_draw_sdl_img_core()
135 … has_composite = lv_draw_sdl_composite_begin(ctx, &zoomed_cords, clip, NULL, draw_dsc->blend_mode, in lv_draw_sdl_img_core()
168 const lv_area_t * clip, SDL_Rect * clipped_src, SDL_Rect * clipped_dst) in calc_draw_part() argument
184 if(clip) { in calc_draw_part()
186 _lv_area_intersect(&clipped_area, coords, clip); in calc_draw_part()
311 … const lv_draw_img_dsc_t * draw_dsc, const lv_area_t * coords, const lv_area_t * clip) in draw_img_simple() argument
[all …]
Dlv_draw_sdl_rect.c91 static void draw_shadow(lv_draw_sdl_ctx_t * ctx, const lv_area_t * coords, const lv_area_t * clip,
94 static void draw_outline(lv_draw_sdl_ctx_t * ctx, const lv_area_t * coords, const lv_area_t * clip,
98 … const lv_area_t * clip, lv_coord_t rout, lv_coord_t rin, lv_color_t color, lv_opa_t opa,
137 const lv_area_t * clip = draw_ctx->clip_area; in lv_draw_sdl_draw_rect() local
156 lv_area_t t_coords = *coords, t_clip = *clip, apply_area, t_area; in lv_draw_sdl_draw_rect()
157 …bool has_composite = lv_draw_sdl_composite_begin(ctx, coords, clip, &extension, dsc->blend_mode, &… in lv_draw_sdl_draw_rect()
283 … const lv_area_t * coords, const lv_area_t * clip, bool full) in lv_draw_sdl_rect_bg_frag_draw_corners() argument
285 if(!clip) clip = coords; in lv_draw_sdl_rect_bg_frag_draw_corners()
292 if(_lv_area_intersect(&dst_area, &corner_area, clip)) { in lv_draw_sdl_rect_bg_frag_draw_corners()
304 if(_lv_area_intersect(&dst_area, &corner_area, clip)) { in lv_draw_sdl_rect_bg_frag_draw_corners()
[all …]
Dlv_draw_sdl_line.c75 const lv_area_t * clip = draw_ctx->clip_area; in lv_draw_sdl_draw_line() local
79 lv_area_to_sdl_rect(clip, &clip_r); in lv_draw_sdl_draw_line()
81 lv_area_t t_coords = coords, t_clip = *clip, apply_area; in lv_draw_sdl_draw_line()
83 …lv_draw_sdl_composite_begin(sdl_ctx, &coords, clip, &extension, dsc->blend_mode, &t_coords, &t_cli… in lv_draw_sdl_draw_line()
Dlv_draw_sdl_bg.c55 const lv_area_t * clip = draw_ctx->clip_area; in lv_draw_sdl_draw_bg() local
59 bool has_content = _lv_area_intersect(&t_area, coords, clip); in lv_draw_sdl_draw_bg()
Dlv_draw_sdl_layer.h47 lv_area_t * coords, lv_area_t * clip);
Dlv_draw_sdl_rect.h91 … const lv_area_t * coords, const lv_area_t * clip, bool full);
Dlv_draw_sdl_layer.c130 lv_area_t * coords, lv_area_t * clip) in lv_draw_sdl_transform_areas_offset() argument
137 lv_area_move(clip, -area->x1, -area->y1); in lv_draw_sdl_transform_areas_offset()
/lvgl-3.7.0/docs/overview/
Ddrawing.md75 - **clip corner** To clip overflowing content (usually children) on rounded corners, a rounded rect…
113 `lv_event_get_clip_area(event)` can be used to get the current clip area. The clip area is required…
132 `lv_event_get_clip_area(event)` can be used to get the current clip area.
158 const lv_area_t * clip_area; // The current clip area, required if you need to draw somethin…
Dstyle-props.md694 Enable to clip the overflowed content on the rounded corner. Can be `true` or `false`.
/lvgl-3.7.0/docs/porting/
Dgpu.md12 - `const lv_area_t * clip_area` The current clip area with absolute coordinates, always the same or…
126     /*Let's get the blend area which is the intersection of the area to fill and the clip area.*/
/lvgl-3.7.0/docs/widgets/core/
Dlabel.md37 - `LV_LABEL_LONG_CLIP` Simply clip the parts of the text outside the label.
Dimg.md108 …_set_style_radius` to set radius to an image, and enable `lv_obj_set_style_clip_corner` to clip the
/lvgl-3.7.0/docs/widgets/
Dobj.md123 - `LV_OBJ_FLAG_OVERFLOW_VISIBLE` Do not clip the children's content to the parent's boundary
/lvgl-3.7.0/docs/
DCHANGELOG.md300 - fix(canvas): fix clipéping on transformation [`b884aba`](https://github.com/lvgl/lvgl/commit/b884…
522 - fix(draw): clip the bg img to the rectangle's area in lv_draw_sw_rect [`77d726e`](https://github.…
544 - fix(btnmatrix): fix extra draw size calculation to not clip shadow [`7ada130`](https://github.com…
784 - fix(draw): consider opa and clip corner on bg_img [`d51aea4`](https://github.com/littlevgl/lvgl/c…
792 - fix(roller): clip overflowing text [`5709528`](https://github.com/littlevgl/lvgl/commit/570952855…
1164 - fix(table) clip overflowing content [`8c15933`](https://github.com/lvgl/lvgl/commit/8c15933030cad…
1610 - fix(label) calculating the clip area <a href="https://github.com/lvgl/lvgl/commit/57e211cc">57e21…
2040 - *clip corner*: crop the content on the rounded corners
/lvgl-3.7.0/docs/_static/css/
Dfontawesome.min.css5 …;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.…