Home
last modified time | relevance | path

Searched refs:LV_OPA_50 (Results 1 – 20 of 20) sorted by relevance

/lvgl-latest/demos/benchmark/
Dlv_demo_benchmark.c106 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/
Dlv_example_style_15.c25 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()
Dlv_example_style_3.c20 lv_style_set_border_opa(&style, LV_OPA_50); in lv_example_style_3()
Dlv_example_style_6.c20 lv_style_set_img_recolor_opa(&style, LV_OPA_50); in lv_example_style_6()
Dlv_example_style_11.c18 lv_style_set_shadow_opa(&style_base, LV_OPA_50); in lv_example_style_11()
/lvgl-latest/examples/widgets/chart/
Dlv_example_chart_7.c20 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()
Dlv_example_chart_4.c36 draw_rect_dsc.bg_opa = LV_OPA_50; in event_cb()
/lvgl-latest/src/misc/
Dlv_color.c139 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()
Dlv_color.h48 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/
Dlv_example_span_1.c30 lv_style_set_text_opa(&span->style, LV_OPA_50); in lv_example_span_1()
/lvgl-latest/examples/widgets/btnmatrix/
Dlv_example_btnmatrix_3.c41 lv_style_set_border_opa(&style_btn, LV_OPA_50); in lv_example_btnmatrix_3()
/lvgl-latest/examples/widgets/img/
Dlv_example_img_2.c24 lv_slider_set_value(intense_slider, LV_OPA_50, LV_ANIM_OFF); in lv_example_img_2()
/lvgl-latest/examples/others/fragment/
Dlv_example_fragment_2.c81 lv_obj_set_style_bg_opa(content, LV_OPA_50, 0); in sample_fragment_create_obj()
/lvgl-latest/src/extra/themes/default/
Dlv_theme_default.c274 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/
Dcanvas.md39 `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/
Dlv_draw_sw_transform.c425 cbuf[x] = lv_color_mix(c_hor, c_ver, LV_OPA_50); in argb_and_rgb_aa()
/lvgl-latest/src/core/
Dlv_refr.c366 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/
Dlv_demo_widgets.c155 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/
Dlv_canvas.c498 … 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/
Dstyle.md139 lv_style_set_bg_opa(&style_btn, LV_OPA_50);