/lvgl-latest/tests/src/test_cases/draw/ |
D | test_draw_vector.c | 32 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 …]
|
D | test_draw_svg.c | 18 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/ |
D | lv_demo_vector_graphic.c | 118 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/ |
D | lv_color.c | 148 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()
|
D | lv_color.h | 302 lv_color_t lv_color_make(uint8_t r, uint8_t g, uint8_t b);
|
/lvgl-latest/examples/widgets/canvas/ |
D | lv_example_canvas_8.c | 36 lv_vector_dsc_set_fill_color(dsc, lv_color_make(0x00, 0x80, 0xff)); in lv_example_canvas_8()
|
/lvgl-latest/demos/high_res/ |
D | lv_demo_high_res_app_smart_meter.c | 247 ? 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/ |
D | lv_example_image_2.c | 45 …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/ |
D | lv_wayland.c | 1856 … 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/ |
D | canvas.rst | 65 the *blue* channel in the ``color`` value, e.g. :cpp:expr:`lv_color_make(0, 0, index)`.
|
/lvgl-latest/tests/src/test_cases/libs/ |
D | test_font_stress.c | 95 lv_color_t color = lv_color_make(r, g, b); in font_stress_label_create()
|
/lvgl-latest/docs/details/main-components/ |
D | color.rst | 29 lv_color_t c = lv_color_make(red, green, blue);
|
/lvgl-latest/src/draw/ |
D | lv_draw_label.c | 414 recolor = lv_color_make(r, g, b); in lv_draw_label_iterate_characters()
|
/lvgl-latest/src/draw/vg_lite/ |
D | lv_vg_lite_grad.c | 409 lv_color_t grad_color = lv_color_make(c->blue, c->green, c->red); in linear_grad_create()
|
/lvgl-latest/src/draw/sw/ |
D | lv_draw_sw_gradient.c | 19 #define GRAD_CM(r,g,b) lv_color_make(r,g,b)
|
/lvgl-latest/src/draw/nema_gfx/ |
D | lv_draw_nema_gfx_label.c | 616 recolor = lv_color_make(r, g, b); in _draw_label_iterate_characters()
|
/lvgl-latest/src/core/ |
D | lv_refr.c | 123 lv_color_t debug_color = lv_color_make(lv_rand(0, 0xFF), lv_rand(0, 0xFF), lv_rand(0, 0xFF)); in lv_obj_redraw()
|