/lvgl-latest/src/core/ |
D | lv_obj_draw.c | 44 draw_dsc->bg_opa = LV_OPA_TRANSP; in lv_obj_init_draw_rect_dsc() 45 draw_dsc->bg_img_opa = LV_OPA_TRANSP; in lv_obj_init_draw_rect_dsc() 46 draw_dsc->border_opa = LV_OPA_TRANSP; in lv_obj_init_draw_rect_dsc() 47 draw_dsc->outline_opa = LV_OPA_TRANSP; in lv_obj_init_draw_rect_dsc() 48 draw_dsc->shadow_opa = LV_OPA_TRANSP; in lv_obj_init_draw_rect_dsc() 58 if(draw_dsc->bg_opa != LV_OPA_TRANSP) { in lv_obj_init_draw_rect_dsc() 81 if(draw_dsc->border_opa != LV_OPA_TRANSP) { in lv_obj_init_draw_rect_dsc() 92 if(draw_dsc->outline_opa != LV_OPA_TRANSP) { in lv_obj_init_draw_rect_dsc() 101 if(draw_dsc->bg_img_opa != LV_OPA_TRANSP) { in lv_obj_init_draw_rect_dsc() 135 if(draw_dsc->bg_opa != LV_OPA_TRANSP) { in lv_obj_init_draw_rect_dsc() [all …]
|
D | lv_obj.c | 571 draw_dsc.bg_opa = LV_OPA_TRANSP; in lv_obj_draw() 572 draw_dsc.border_opa = LV_OPA_TRANSP; in lv_obj_draw() 573 draw_dsc.outline_opa = LV_OPA_TRANSP; in lv_obj_draw() 574 draw_dsc.shadow_opa = LV_OPA_TRANSP; in lv_obj_draw() 601 draw_dsc.bg_opa = LV_OPA_TRANSP; in lv_obj_draw() 602 draw_dsc.bg_img_opa = LV_OPA_TRANSP; in lv_obj_draw() 603 draw_dsc.outline_opa = LV_OPA_TRANSP; in lv_obj_draw() 604 draw_dsc.shadow_opa = LV_OPA_TRANSP; in lv_obj_draw() 687 dsc->border_opa = LV_OPA_TRANSP; in scrollbar_init_draw_dsc() 700 dsc->shadow_opa = LV_OPA_TRANSP; in scrollbar_init_draw_dsc() [all …]
|
D | lv_disp.c | 339 lv_anim_set_values(&a_new, LV_OPA_TRANSP, LV_OPA_COVER); in lv_scr_load_anim() 343 lv_anim_set_values(&a_old, LV_OPA_COVER, LV_OPA_TRANSP); in lv_scr_load_anim()
|
D | lv_obj_style.c | 471 lv_anim_set_values(&a, lv_obj_get_style_opa(obj, 0), LV_OPA_TRANSP); in lv_obj_fade_out() 500 if(opa_obj <= LV_OPA_MIN) return LV_OPA_TRANSP; in lv_obj_get_style_opa_recursive() 516 if(opa_obj <= LV_OPA_MIN) return LV_OPA_TRANSP; in lv_obj_get_style_opa_recursive() 524 if(opa_final <= LV_OPA_MIN) return LV_OPA_TRANSP; in lv_obj_get_style_opa_recursive()
|
/lvgl-latest/examples/widgets/roller/ |
D | lv_example_roller_3.c | 32 …lv_draw_mask_fade_init(fade_mask_top, &rect_area, LV_OPA_TRANSP, rect_area.y1, LV_OPA_COVER, rect_… in mask_event_cb() 39 …k_fade_init(fade_mask_bottom, &rect_area, LV_OPA_COVER, rect_area.y1, LV_OPA_TRANSP, rect_area.y2); in mask_event_cb() 70 lv_obj_set_style_bg_opa(roller1, LV_OPA_TRANSP, LV_PART_SELECTED); in lv_example_roller_3()
|
/lvgl-latest/src/widgets/ |
D | lv_bar.c | 436 draw_rect_dsc.bg_opa = LV_OPA_TRANSP; in draw_indic() 437 draw_rect_dsc.bg_img_opa = LV_OPA_TRANSP; in draw_indic() 438 draw_rect_dsc.border_opa = LV_OPA_TRANSP; in draw_indic() 462 draw_rect_dsc.border_opa = LV_OPA_TRANSP; in draw_indic() 463 draw_rect_dsc.shadow_opa = LV_OPA_TRANSP; in draw_indic() 493 draw_rect_dsc.bg_opa = LV_OPA_TRANSP; in draw_indic() 494 draw_rect_dsc.bg_img_opa = LV_OPA_TRANSP; in draw_indic() 495 draw_rect_dsc.shadow_opa = LV_OPA_TRANSP; in draw_indic()
|
/lvgl-latest/src/extra/widgets/calendar/ |
D | lv_calendar.c | 297 dsc->rect_dsc->bg_opa = LV_OPA_TRANSP; in draw_part_begin_event_cb() 298 dsc->rect_dsc->border_opa = LV_OPA_TRANSP; in draw_part_begin_event_cb() 301 dsc->rect_dsc->bg_opa = LV_OPA_TRANSP; in draw_part_begin_event_cb() 302 dsc->rect_dsc->border_opa = LV_OPA_TRANSP; in draw_part_begin_event_cb()
|
/lvgl-latest/examples/widgets/label/ |
D | lv_example_label_4.c | 40 lv_canvas_fill_bg(canvas, lv_color_black(), LV_OPA_TRANSP); in lv_example_label_4()
|
/lvgl-latest/examples/widgets/btn/ |
D | lv_example_btn_2.c | 40 lv_style_set_outline_opa(&style_pr, LV_OPA_TRANSP); in lv_example_btn_2()
|
/lvgl-latest/examples/scroll/ |
D | lv_example_scroll_6.c | 43 lv_opa_t opa = lv_map(x, 0, r, LV_OPA_TRANSP, LV_OPA_COVER); in scroll_event_cb()
|
/lvgl-latest/docs/overview/ |
D | display.md | 70 - Set the screen's opacity to `LV_OPA_TRANSP` e.g. with `lv_obj_set_style_bg_opa(lv_scr_act(), LV_O… 71 - Set the display opacity to `LV_OPA_TRANSP` with `lv_disp_set_bg_opa(NULL, LV_OPA_TRANSP);`
|
D | style-props.md | 229 Set the opacity of the background. Value 0, `LV_OPA_0` or `LV_OPA_TRANSP` means fully transparent, … 231 …display:inline; margin-right: 20px; margin-left: 0px'><strong>Default</strong> `LV_OPA_TRANSP`</li> 301 Set the opacity of the background image. Value 0, `LV_OPA_0` or `LV_OPA_TRANSP` means fully transpa… 319 Set the intensity of background image recoloring. Value 0, `LV_OPA_0` or `LV_OPA_TRANSP` means no m… 321 …display:inline; margin-right: 20px; margin-left: 0px'><strong>Default</strong> `LV_OPA_TRANSP`</li> 349 Set the opacity of the border. Value 0, `LV_OPA_0` or `LV_OPA_TRANSP` means fully transparent, 255,… 406 Set the opacity of the outline. Value 0, `LV_OPA_0` or `LV_OPA_TRANSP` means fully transparent, 255… 472 Set the opacity of the shadow. Value 0, `LV_OPA_0` or `LV_OPA_TRANSP` means fully transparent, 255,… 484 Set the opacity of an image. Value 0, `LV_OPA_0` or `LV_OPA_TRANSP` means fully transparent, 255, `… 502 Set the intensity of the color mixing. Value 0, `LV_OPA_0` or `LV_OPA_TRANSP` means fully transpare… [all …]
|
D | color.md | 92 - `LV_OPA_TRANSP` Value: 0, means no opacity making the color completely transparent
|
/lvgl-latest/examples/widgets/btnmatrix/ |
D | lv_example_btnmatrix_2.c | 33 dsc->label_dsc->opa = LV_OPA_TRANSP; /*Hide the text if any*/ in event_cb()
|
/lvgl-latest/src/draw/sw/ |
D | lv_draw_sw_img.c | 65 …(!mask_any && !transform && cf == LV_IMG_CF_TRUE_COLOR && draw_dsc->recolor_opa == LV_OPA_TRANSP) { in lv_draw_sw_img_decoded() 85 …if(!mask_any && !transform && cf == LV_IMG_CF_RGB565A8 && draw_dsc->recolor_opa == LV_OPA_TRANSP) { in lv_draw_sw_img_decoded()
|
D | lv_draw_sw_blend.c | 154 mask[i] = mask[i] > 128 ? LV_OPA_COVER : LV_OPA_TRANSP; in lv_draw_sw_blend_basic() 350 lv_opa_t last_mask = LV_OPA_TRANSP; in fill_normal() 353 lv_opa_t opa_tmp = LV_OPA_TRANSP; in fill_normal() 509 lv_opa_t last_mask = LV_OPA_TRANSP; in fill_argb() 510 lv_opa_t opa_tmp = LV_OPA_TRANSP; in fill_argb() 581 lv_opa_t last_mask = LV_OPA_TRANSP; in fill_blended()
|
D | lv_draw_sw_letter.c | 221 static lv_opa_t prev_opa = LV_OPA_TRANSP; in draw_letter_normal() 510 … if(font_rgb[0] == 0 && font_rgb[1] == 0 && font_rgb[2] == 0) mask_buf[mask_p] = LV_OPA_TRANSP; in draw_letter_subpx()
|
/lvgl-latest/src/draw/nxp/pxp/ |
D | lv_draw_pxp_blend.c | 298 bool has_recolor = (dsc->recolor_opa != LV_OPA_TRANSP); in lv_gpu_nxp_pxp_blit_transform() 378 bool has_recolor = (dsc->recolor_opa != LV_OPA_TRANSP); in lv_pxp_blit_cover() 531 bool has_recolor = (dsc->recolor_opa != LV_OPA_TRANSP); in lv_pxp_blit_cf()
|
/lvgl-latest/examples/widgets/chart/ |
D | lv_example_chart_2.c | 26 …mask_fade_init(&fade_mask_param, &obj->coords, LV_OPA_COVER, obj->coords.y1 + h / 8, LV_OPA_TRANSP, in draw_event_cb()
|
/lvgl-latest/src/extra/themes/basic/ |
D | lv_theme_basic.c | 80 lv_style_set_bg_opa(&styles->transp, LV_OPA_TRANSP); in style_init() 126 lv_style_set_bg_opa(&styles->ta_cursor, LV_OPA_TRANSP); in style_init()
|
/lvgl-latest/demos/music/ |
D | lv_demo_music_list.c | 77 lv_style_set_bg_opa(&style_btn, LV_OPA_TRANSP); in _lv_demo_music_list_create()
|
/lvgl-latest/docs/widgets/core/ |
D | img.md | 54 This feature can be enabled in the style by setting `img_recolor_opa` between `LV_OPA_TRANSP` (no r… 55 The default value is `LV_OPA_TRANSP` so this feature is disabled.
|
/lvgl-latest/src/draw/renesas/ |
D | lv_gpu_d2_draw_label.c | 100 static lv_opa_t prev_opa = LV_OPA_TRANSP; in draw_letter_normal()
|
D | lv_gpu_d2_ra6m3.c | 624 flags |= (colorize_enabled || img_dsc.recolor_opa != LV_OPA_TRANSP) ? d2_bf_colorize2 : 0; 629 else if(img_dsc.recolor_opa != LV_OPA_TRANSP) {
|
/lvgl-latest/src/draw/arm2d/ |
D | lv_gpu_arm2d.c | 923 …(!mask_any && !transform && cf == LV_IMG_CF_TRUE_COLOR && draw_dsc->recolor_opa == LV_OPA_TRANSP) { in lv_draw_arm2d_img_decoded() 943 …if(!mask_any && !transform && cf == LV_IMG_CF_RGB565A8 && draw_dsc->recolor_opa == LV_OPA_TRANSP && in lv_draw_arm2d_img_decoded() 1209 && (draw_dsc->recolor_opa == LV_OPA_TRANSP) in lv_draw_arm2d_img_decoded()
|