/lvgl-3.7.0/src/draw/sw/ |
D | lv_draw_sw_arc.c | 41 static void draw_quarter_0(quarter_draw_dsc_t * q); 42 static void draw_quarter_1(quarter_draw_dsc_t * q); 43 static void draw_quarter_2(quarter_draw_dsc_t * q); 44 static void draw_quarter_3(quarter_draw_dsc_t * q); 230 static void draw_quarter_0(quarter_draw_dsc_t * q) in draw_quarter_0() argument 232 const lv_area_t * clip_area_ori = q->draw_ctx->clip_area; in draw_quarter_0() 235 if(q->start_quarter == 0 && q->end_quarter == 0 && q->start_angle < q->end_angle) { in draw_quarter_0() 237 …quarter_area.y1 = q->center->y + ((lv_trigo_sin(q->start_angle) * (q->radius - q->width)) >> LV_TR… in draw_quarter_0() 238 …quarter_area.x2 = q->center->x + ((lv_trigo_sin(q->start_angle + 90) * (q->radius)) >> LV_TRIGO_SH… in draw_quarter_0() 240 … quarter_area.y2 = q->center->y + ((lv_trigo_sin(q->end_angle) * q->radius) >> LV_TRIGO_SHIFT); in draw_quarter_0() [all …]
|
D | lv_draw_sw_dither.c | 116 #define FS_QUANT_ERROR(e, t, q) { lv_color32_t u; u.full = lv_color_to32(q); e.r = (int8_t)(t.ch.re… in lv_dither_err_diff_hor() argument 122 lv_color_t q; in lv_dither_err_diff_hor() local 127 q = lv_color_hex(t.full); in lv_dither_err_diff_hor() 129 FS_QUANT_ERROR(error, t, q); in lv_dither_err_diff_hor() 149 grad->map[x] = q; in lv_dither_err_diff_hor() 198 lv_color_t q; in lv_dither_err_diff_ver() local 203 q = lv_color_hex(t.full); in lv_dither_err_diff_ver() 204 FS_QUANT_ERROR(next_px_err, t, q); in lv_dither_err_diff_ver() 207 grad->map[x] = q; in lv_dither_err_diff_ver()
|
/lvgl-3.7.0/src/extra/libs/tiny_ttf/ |
D | stb_rect_pack.h | 531 const stbrp_rect * q = (const stbrp_rect *) b; in rect_height_compare() local 532 if(p->h > q->h) in rect_height_compare() 534 if(p->h < q->h) in rect_height_compare() 536 return (p->w > q->w) ? -1 : (p->w < q->w); in rect_height_compare() 542 const stbrp_rect * q = (const stbrp_rect *) b; in rect_original_order() local 543 return (p->was_packed < q->was_packed) ? -1 : (p->was_packed > q->was_packed); in rect_original_order()
|
D | stb_truetype_htcw.h | 310 stbtt_aligned_quad q; 311 … stbtt_GetBakedQuad(cdata, 512, 512, *text - 32, &x, &y, &q, 1);//1=opengl & d3d10+,0=d3d9 312 glTexCoord2f(q.s0, q.t0); 313 glVertex2f(q.x0, q.y0); 314 glTexCoord2f(q.s1, q.t0); 315 glVertex2f(q.x1, q.y0); 316 glTexCoord2f(q.s1, q.t1); 317 glVertex2f(q.x1, q.y1); 318 glTexCoord2f(q.s0, q.t1); 319 glVertex2f(q.x0, q.y1); [all …]
|
/lvgl-3.7.0/src/misc/ |
D | lv_math.c | 109 void LV_ATTRIBUTE_FAST_MEM lv_sqrt(uint32_t x, lv_sqrt_res_t * q, uint32_t mask) in lv_sqrt() argument 122 q->i = root >> 4; in lv_sqrt() 123 q->f = (root & 0xf) << 4; in lv_sqrt()
|
D | lv_color.c | 159 uint8_t region, remainder, p, q, t; in lv_color_hsv_to_rgb() local 169 q = (v * (255 - ((s * remainder) >> 8))) >> 8; in lv_color_hsv_to_rgb() 179 r = q; in lv_color_hsv_to_rgb() 190 g = q; in lv_color_hsv_to_rgb() 201 b = q; in lv_color_hsv_to_rgb()
|
D | lv_math.h | 87 void /* LV_ATTRIBUTE_FAST_MEM */ lv_sqrt(uint32_t x, lv_sqrt_res_t * q, uint32_t mask);
|
/lvgl-3.7.0/src/draw/nxp/vglite/ |
D | lv_draw_vglite_arc.c | 628 for(int32_t q = 0; q < nbarc ; q++) { in add_arc_path() local 629 q_arc.quarter = (q + ((start_angle + 89) / 90)) % 4; in add_arc_path() 659 for(int32_t q = nbarc - 1; q >= 0; q--) { in add_arc_path() local 660 q_arc.quarter = (q + ((start_angle + 89) / 90)) % 4; in add_arc_path()
|
/lvgl-3.7.0/docs/get-started/ |
D | index.md | 10 …ex.html) guide or check the ready to use [Projects](https://github.com/lvgl?q=lv_port_&type=&langu…
|
/lvgl-3.7.0/src/extra/ |
D | README.md | 24 - [Preloaders](https://www.google.com/search?q=preloader&sxsrf=ALeKk01ddA4YB0WEgLLN1bZNSm8YER7pkg:1…
|
/lvgl-3.7.0/ |
D | README_zh.md | 129 …master/porting/index.html)尝试将LVGL移植到一块开发板上,LVGL也已经提供了一些移植好的[工程](https://github.com/lvgl?q=lv_port_)
|
D | README.md | 126 …/porting/index.html) guide or check the ready to use [Projects](https://github.com/lvgl?q=lv_port_)
|
D | README_pt_BR.md | 142 …/porting/index.html) ou verifique o pronto para usar [Projects](https://github.com/lvgl?q=lv_port_)
|
/lvgl-3.7.0/docs/intro/ |
D | index.md | 68 - [lv_port_...](https://github.com/lvgl?q=lv_port&type=&language=) LVGL ports to development boards… 69 - [lv_binding_..](https://github.com/lvgl?q=lv_binding&type=&language=l) Bindings to other languages
|
/lvgl-3.7.0/src/extra/libs/png/ |
D | lodepng.c | 926 size_t q = (p + width > num) ? num : (p + width); in bpmnode_sort() local 928 size_t i = p, j = q, k; in bpmnode_sort() 930 if(i < q && (j >= r || a[i].weight <= a[j].weight)) b[k] = a[i++]; in bpmnode_sort()
|