Home
last modified time | relevance | path

Searched refs:lv_color_make (Results 1 – 17 of 17) sorted by relevance

/lvgl-latest/tests/src/test_cases/draw/
Dtest_draw_vector.c32 lv_vector_dsc_set_fill_color(ctx, lv_color_make(0xff, 0x00, 0x00)); in draw_shapes()
38 lv_vector_dsc_set_fill_color(ctx, lv_color_make(0x00, 0x00, 0xff)); in draw_shapes()
45 lv_vector_dsc_set_fill_color32(ctx, lv_color_to_32(lv_color_make(0x00, 0xff, 0x00), 0x80)); in draw_shapes()
86 lv_vector_dsc_set_fill_color(ctx, lv_color_make(0xff, 0x00, 0x00)); in draw_shapes()
94 lv_vector_dsc_set_fill_color(ctx, lv_color_make(0x00, 0x80, 0xff)); in draw_shapes()
110 lv_vector_dsc_set_stroke_color(ctx, lv_color_make(0x00, 0xff, 0xff)); in draw_shapes()
125 lv_vector_dsc_set_fill_color(ctx, lv_color_make(0xFF, 0x00, 0x00)); in draw_shapes()
159 lv_vector_dsc_set_stroke_color(ctx, lv_color_make(0xff, 0x00, 0x00)); in draw_lines()
167 lv_vector_dsc_set_stroke_color(ctx, lv_color_make(0x00, 0xff, 0x00)); in draw_lines()
178 lv_vector_dsc_set_stroke_color(ctx, lv_color_make(0x00, 0x00, 0x00)); in draw_lines()
[all …]
Dtest_draw_svg.c18 lv_canvas_fill_bg(canvas, lv_color_make(0xff, 0xff, 0xff), 255); in setUp()
51 lv_canvas_fill_bg(canvas, lv_color_make(0xff, 0xff, 0xff), 255); in draw_svg()
/lvgl-latest/demos/vector_graphic/
Dlv_demo_vector_graphic.c118 lv_vector_dsc_set_fill_color(ctx, lv_color_make(0xFF, 0x00, 0x00)); in draw_shapes()
127 lv_vector_dsc_set_fill_color(ctx, lv_color_make(0x00, 0x80, 0xff)); in draw_shapes()
136 lv_vector_dsc_set_fill_color(ctx, lv_color_make(0x80, 0x00, 0x80)); in draw_shapes()
158 lv_vector_dsc_set_stroke_color(ctx, lv_color_make(0x00, 0xff, 0x00)); in draw_lines()
182 lv_vector_dsc_set_fill_color(ctx, lv_color_make(0xFF, 0x00, 0xFF)); in draw_blend()
198 lv_vector_dsc_set_stroke_color(ctx, lv_color_make(0x00, 0xff, 0xff)); in draw_arc()
/lvgl-latest/src/misc/
Dlv_color.c148 return lv_color_make(v, v, v); in lv_color_hsv_to_rgb()
191 lv_color_t result = lv_color_make(r, g, b); in lv_color_hsv_to_rgb()
281 lv_color_t lv_color_make(uint8_t r, uint8_t g, uint8_t b) in lv_color_make() function
302 …return lv_color_make((uint8_t)(((c >> 4) & 0xF0) | ((c >> 8) & 0xF)), (uint8_t)((c & 0xF0) | ((c &… in lv_color_hex3()
328 return lv_color_make(0xff, 0xff, 0xff); in lv_color_white()
333 return lv_color_make(0x00, 0x00, 0x00); in lv_color_black()
Dlv_color.h302 lv_color_t lv_color_make(uint8_t r, uint8_t g, uint8_t b);
/lvgl-latest/examples/widgets/canvas/
Dlv_example_canvas_8.c36 lv_vector_dsc_set_fill_color(dsc, lv_color_make(0x00, 0x80, 0xff)); in lv_example_canvas_8()
/lvgl-latest/demos/high_res/
Dlv_demo_high_res_app_smart_meter.c247 ? lv_color_make(g, g, g) : lv_color_make(ginv, ginv, ginv), 0); in widget1_open_part1_anim_cb()
249 ? lv_color_make(ginv, ginv, ginv) : lv_color_make(g, g, g), 0); in widget1_open_part1_anim_cb()
272 ? lv_color_make(ginv, ginv, ginv) : lv_color_make(g, g, g), 0); in widget1_open_part2_anim_cb()
274 ? lv_color_make(g, g, g) : lv_color_make(ginv, ginv, ginv), 0); in widget1_open_part2_anim_cb()
/lvgl-latest/examples/widgets/image/
Dlv_example_image_2.c45 …lv_color_t color = lv_color_make(lv_slider_get_value(red_slider), lv_slider_get_value(green_slide… in slider_event_cb()
/lvgl-latest/src/drivers/wayland/
Dlv_wayland.c1856 … color_fill(buf_base, lv_color_make(0x66, 0x66, 0x66), decoration->width, decoration->height); in create_decoration()
1859 … color_fill(buf_base, lv_color_make(0xCC, 0xCC, 0xCC), decoration->width, decoration->height); in create_decoration()
1865 color_fill(pixel, lv_color_make(0x33, 0x33, 0x33), 1, 1); in create_decoration()
1868 color_fill(pixel, lv_color_make(0x66, 0x66, 0x66), 1, 1); in create_decoration()
1876 … color_fill(buf_base, lv_color_make(0xCC, 0xCC, 0xCC), decoration->width, decoration->height); in create_decoration()
1885 color_fill(pixel, lv_color_make(0x33, 0x33, 0x33), 1, 1); in create_decoration()
1891 … color_fill(buf_base, lv_color_make(0xCC, 0xCC, 0xCC), decoration->width, decoration->height); in create_decoration()
1897 color_fill(pixel, lv_color_make(0x33, 0x33, 0x33), 1, 1); in create_decoration()
1910 … color_fill(buf_base, lv_color_make(0x66, 0x66, 0x66), decoration->width, decoration->height); in create_decoration()
/lvgl-latest/docs/details/widgets/
Dcanvas.rst65 the *blue* channel in the ``color`` value, e.g. :cpp:expr:`lv_color_make(0, 0, index)`.
/lvgl-latest/tests/src/test_cases/libs/
Dtest_font_stress.c95 lv_color_t color = lv_color_make(r, g, b); in font_stress_label_create()
/lvgl-latest/docs/details/main-components/
Dcolor.rst29 lv_color_t c = lv_color_make(red, green, blue);
/lvgl-latest/src/draw/
Dlv_draw_label.c414 recolor = lv_color_make(r, g, b); in lv_draw_label_iterate_characters()
/lvgl-latest/src/draw/vg_lite/
Dlv_vg_lite_grad.c409 lv_color_t grad_color = lv_color_make(c->blue, c->green, c->red); in linear_grad_create()
/lvgl-latest/src/draw/sw/
Dlv_draw_sw_gradient.c19 #define GRAD_CM(r,g,b) lv_color_make(r,g,b)
/lvgl-latest/src/draw/nema_gfx/
Dlv_draw_nema_gfx_label.c616 recolor = lv_color_make(r, g, b); in _draw_label_iterate_characters()
/lvgl-latest/src/core/
Dlv_refr.c123 lv_color_t debug_color = lv_color_make(lv_rand(0, 0xFF), lv_rand(0, 0xFF), lv_rand(0, 0xFF)); in lv_obj_redraw()