| /lvgl-latest/src/libs/thorvg/ |
| D | tvgSwStroke.cpp | 52 static void _growBorder(SwStrokeBorder* border, uint32_t newPts) in _growBorder() argument 54 auto maxOld = border->maxPts; in _growBorder() 55 auto maxNew = border->ptsCnt + newPts; in _growBorder() 64 border->pts = static_cast<SwPoint*>(realloc(border->pts, maxCur * sizeof(SwPoint))); in _growBorder() 65 border->tags = static_cast<uint8_t*>(realloc(border->tags, maxCur * sizeof(uint8_t))); in _growBorder() 66 border->maxPts = maxCur; in _growBorder() 70 static void _borderClose(SwStrokeBorder* border, bool reverse) in _borderClose() argument 72 auto start = border->start; in _borderClose() 73 auto count = border->ptsCnt; in _borderClose() 77 border->ptsCnt = start; in _borderClose() [all …]
|
| D | tvgSwPostEffect.cpp | 54 static int _gaussianRemap(int end, int idx, int border) in _gaussianRemap() argument 57 if (border == 1) return idx % end; in _gaussianRemap() 67 …32_t stride, int32_t w, int32_t h, const SwBBox& bbox, int32_t dimension, int border, bool flipped) in _gaussianBlur() argument 88 auto id = (_gaussianRemap(w, x2, border) + p) * 4; in _gaussianBlur() 96 auto rid = (_gaussianRemap(w, r, border) + p) * 4; in _gaussianBlur() 97 auto lid = (_gaussianRemap(w, l, border) + p) * 4; in _gaussianBlur() 178 …bbox.min.y, bbox.max.x, bbox.max.y, params->sigma, params->direction, params->border, data->level); in effectGaussianBlur() 185 _gaussianBlur(front, back, stride, w, h, bbox, k, params->border, false); in effectGaussianBlur() 199 _gaussianBlur(front, back, stride, h, w, bbox, k, params->border, true); in effectGaussianBlur()
|
| D | tvgRender.h | 286 uint8_t border; //0: duplicate, 1: wrap member 297 inst->border = std::min(va_arg(args, int), 1); in gen()
|
| /lvgl-latest/demos/music/ |
| D | lv_demo_music_list.c | 220 lv_obj_t * border = lv_image_create(btn); in add_list_button() local 221 lv_image_set_src(border, &img_lv_demo_music_list_border); in add_list_button() 222 lv_image_set_inner_align(border, LV_IMAGE_ALIGN_TILE); in add_list_button() 223 lv_obj_set_width(border, lv_pct(120)); in add_list_button() 224 lv_obj_align(border, LV_ALIGN_BOTTOM_MID, 0, 0); in add_list_button() 225 lv_obj_add_flag(border, LV_OBJ_FLAG_IGNORE_LAYOUT); in add_list_button()
|
| /lvgl-latest/docs/_static/css/ |
| D | custom.css | 2 border: 1px solid #bbb; 73 border: none; 101 border-radius: 4px; 151 border: 1px solid #e1e4e5;
|
| D | fontawesome.min.css | 5 …border{border:.08em solid #eee;border-radius:.1em;padding:.2em .25em .15em}.fa-pull-left{float:lef…
|
| /lvgl-latest/docs/details/base-widget/ |
| D | coord.rst | 21 - x=0; y=0 coordinate means the top-left corner of the parent plus the left/top padding plus border… 22 - width/height means the full size, the "content area" is smaller with padding and border width 84 LVGL follows CSS's `border-box <https://developer.mozilla.org/en-US/docs/Web/CSS/box-sizing>`__ 88 :border width: the width of the border. 91 :content: the content area which is the size of the bounding box reduced by the border width … 94 …models of LVGL: The content area is smaller than the bounding box with the padding and border width 96 The border is drawn inside the bounding box. Inside the border LVGL
|
| /lvgl-latest/docs/details/widgets/ |
| D | led.rst | 31 background color, border color, and shadow color.
|
| D | calendar.rst | 40 - day names have no border, no background and are drawn with a gray color 42 …- today has a thicker border with the theme's primary color - highlighted days have some opacity w…
|
| D | roller.rst | 76 line space, border width, etc. of the Roller changes, this function needs
|
| D | chart.rst | 290 visible border on a side and no padding on that side, the division line 291 would be drawn on top of the border and in this case it is not drawn so 292 as not to hide the chart border.
|
| D | dropdown.rst | 46 - :cpp:enumerator:`LV_PART_SCROLLBAR` The scrollbar background, border, shadow
|
| D | label.rst | 95 to the text size + padding + border width. Otherwise, if the width or height are
|
| D | textarea.rst | 38 a "bar" cursor leave the cursor transparent and set a left border. The
|
| /lvgl-latest/docs/ |
| D | ROADMAP.rst | 132 - |uncheck| Gradient to border/outline/shadow 133 - |uncheck| Multiple shadow/border
|
| D | README_zh.rst | 35 <img border="1px" src="https://lvgl.io/github-assets/widgets-demo.gif">
|
| D | CHANGELOG.rst | 138 - **feat(vglite) add implementation for partial border** `5912 <https://github.com/lvgl/lvgl/pull/5… 176 - **perf(draw): skip border drawing when border side is none** `5959 <https://github.com/lvgl/lvgl/…
|
| /lvgl-latest/docs/details/integration/driver/ |
| D | opengles.rst | 219 in the border corners.
|
| /lvgl-latest/docs/details/main-components/ |
| D | draw.rst | 47 :type: defines the drawing algorithm involved (e.g. line, fill, border, image,
|
| /lvgl-latest/docs/details/base-widget/styles/ |
| D | style-properties.rst | 693 Set color of the border 707 Set opacity of the border. Value 0, `LV_OPA_0` or `LV_OPA_TRANSP` means fully transparent, 255, `LV… 721 Set width of the border. Only pixel values can be used. 735 Set only which side(s) the border should be drawn. Possible values are `LV_BORDER_SIDE_NONE/TOP/BOT… 749 Sets whether the border should be drawn before or after the children are drawn. `true`: after child… 763 Properties to describe the outline. It's like a border but drawn outside of the rectangles.
|
| D | style.rst | 10 border width, font, text color and so on. It's similar to a ``class`` in CSS. 113 states and indicate the focused state with a different border color.
|
| /lvgl-latest/docs/intro/ |
| D | basics.rst | 317 A style instance contains properties such as background color, border
|
| /lvgl-latest/docs/details/integration/chip/ |
| D | nxp.rst | 399 - "src/draw/nxp/vglite/lv_draw_vglite_border.c": draw border
|
| /lvgl-latest/ |
| D | README.md | 19 <img border="1px" src="https://lvgl.io/github-assets/widgets-demo.gif">
|
| D | Kconfig | 447 bool "Enable border to simulate shadow"
|