/lvgl-latest/demos/benchmark/ |
D | lv_demo_benchmark.c | 106 lv_style_set_bg_opa(&style_common, opa_mode ? LV_OPA_50 : LV_OPA_COVER); in rectangle_cb() 114 lv_style_set_bg_opa(&style_common, opa_mode ? LV_OPA_50 : LV_OPA_COVER); in rectangle_rounded_cb() 122 lv_style_set_bg_opa(&style_common, opa_mode ? LV_OPA_50 : LV_OPA_COVER); in rectangle_circle_cb() 130 lv_style_set_border_opa(&style_common, opa_mode ? LV_OPA_50 : LV_OPA_COVER); in border_cb() 139 lv_style_set_border_opa(&style_common, opa_mode ? LV_OPA_50 : LV_OPA_COVER); in border_rounded_cb() 149 lv_style_set_border_opa(&style_common, opa_mode ? LV_OPA_50 : LV_OPA_COVER); in border_circle_cb() 158 lv_style_set_border_opa(&style_common, opa_mode ? LV_OPA_50 : LV_OPA_COVER); in border_top_cb() 169 lv_style_set_border_opa(&style_common, opa_mode ? LV_OPA_50 : LV_OPA_COVER); in border_left_cb() 179 lv_style_set_border_opa(&style_common, opa_mode ? LV_OPA_50 : LV_OPA_COVER); in border_top_left_cb() 189 lv_style_set_border_opa(&style_common, opa_mode ? LV_OPA_50 : LV_OPA_COVER); in border_left_right_cb() [all …]
|
/lvgl-latest/examples/styles/ |
D | lv_example_style_15.c | 25 lv_obj_set_style_opa(btn, LV_OPA_50, 0); in lv_example_style_15() 40 lv_obj_set_style_opa(btn, LV_OPA_50, 0); in lv_example_style_15()
|
D | lv_example_style_3.c | 20 lv_style_set_border_opa(&style, LV_OPA_50); in lv_example_style_3()
|
D | lv_example_style_6.c | 20 lv_style_set_img_recolor_opa(&style, LV_OPA_50); in lv_example_style_6()
|
D | lv_example_style_11.c | 18 lv_style_set_shadow_opa(&style_base, LV_OPA_50); in lv_example_style_11()
|
/lvgl-latest/examples/widgets/chart/ |
D | lv_example_chart_7.c | 20 lv_opa_t x_opa = (x_array[p_act] * LV_OPA_50) / 200; in draw_event_cb() 21 lv_opa_t y_opa = (y_array[p_act] * LV_OPA_50) / 1000; in draw_event_cb()
|
D | lv_example_chart_4.c | 36 draw_rect_dsc.bg_opa = LV_OPA_50; in event_cb()
|
/lvgl-latest/src/misc/ |
D | lv_color.c | 139 if(lvl == LV_OPA_50) return c; in lv_color_change_lightness() 140 else if(lvl < LV_OPA_50) return lv_color_darken(c, (LV_OPA_50 - lvl) * 2); in lv_color_change_lightness() 141 else return lv_color_lighten(c, (lvl - LV_OPA_50) * 2); in lv_color_change_lightness()
|
D | lv_color.h | 48 LV_OPA_50 = 127, enumerator 468 ret.full = mix > LV_OPA_50 ? c1.full : c2.full; in lv_color_mix() 515 ret.full = mix > LV_OPA_50 ? c2.full : c1.full; in lv_color_mix_premult()
|
/lvgl-latest/examples/widgets/span/ |
D | lv_example_span_1.c | 30 lv_style_set_text_opa(&span->style, LV_OPA_50); in lv_example_span_1()
|
/lvgl-latest/examples/widgets/btnmatrix/ |
D | lv_example_btnmatrix_3.c | 41 lv_style_set_border_opa(&style_btn, LV_OPA_50); in lv_example_btnmatrix_3()
|
/lvgl-latest/examples/widgets/img/ |
D | lv_example_img_2.c | 24 lv_slider_set_value(intense_slider, LV_OPA_50, LV_ANIM_OFF); in lv_example_img_2()
|
/lvgl-latest/examples/others/fragment/ |
D | lv_example_fragment_2.c | 81 lv_obj_set_style_bg_opa(content, LV_OPA_50, 0); in sample_fragment_create_obj()
|
/lvgl-latest/src/extra/themes/default/ |
D | lv_theme_default.c | 274 lv_style_set_outline_opa(&styles->outline_primary, LV_OPA_50); in style_init() 279 lv_style_set_outline_opa(&styles->outline_secondary, LV_OPA_50); in style_init() 289 lv_style_set_shadow_opa(&styles->btn, LV_OPA_50); in style_init() 310 lv_style_set_color_filter_opa(&styles->disabled, LV_OPA_50); in style_init() 593 lv_style_set_bg_opa(&styles->msgbox_backdrop_bg, LV_OPA_50); in style_init()
|
/lvgl-latest/docs/widgets/core/ |
D | canvas.md | 39 `lv_canvas_fill_bg(canvas, LV_COLOR_BLUE, LV_OPA_50)` fills the whole canvas to blue with 50% opaci…
|
/lvgl-latest/src/draw/sw/ |
D | lv_draw_sw_transform.c | 425 cbuf[x] = lv_color_mix(c_hor, c_ver, LV_OPA_50); in argb_and_rgb_aa()
|
/lvgl-latest/src/core/ |
D | lv_refr.c | 366 lv_obj_set_style_bg_opa(perf_label, LV_OPA_50, 0); in _lv_disp_refr_timer() 423 lv_obj_set_style_bg_opa(mem_label, LV_OPA_50, 0); in _lv_disp_refr_timer()
|
/lvgl-latest/demos/widgets/ |
D | lv_demo_widgets.c | 155 lv_style_set_text_opa(&style_text_muted, LV_OPA_50); in lv_demo_widgets() 1250 lv_obj_set_style_bg_opa(lv_layer_top(), LV_OPA_50, 0); in birthday_event_cb() 1371 draw_rect_dsc.bg_opa = LV_OPA_50; in chart_event_cb()
|
/lvgl-latest/src/widgets/ |
D | lv_canvas.c | 498 … lv_memset((uint8_t *)dsc->data, opa > LV_OPA_50 ? 0xff : 0x00, row_byte_cnt * dsc->header.h); in lv_canvas_fill_bg()
|
/lvgl-latest/docs/overview/ |
D | style.md | 139 lv_style_set_bg_opa(&style_btn, LV_OPA_50);
|