Home
last modified time | relevance | path

Searched refs:lines (Results 1 – 25 of 32) sorted by relevance

12

/lvgl-latest/src/libs/thorvg/
DtvgSwRasterTexmap.h46 AALine *lines; member
136 if (aaSpans->lines[ay].x[0] > x1) aaSpans->lines[ay].x[0] = x1;
137 if (aaSpans->lines[ay].x[1] < x2) aaSpans->lines[ay].x[1] = x2;
330 if (aaSpans->lines[ay].x[0] > x1) aaSpans->lines[ay].x[0] = x1; in _rasterBlendingPolygonImageSegment()
331 if (aaSpans->lines[ay].x[1] < x2) aaSpans->lines[ay].x[1] = x2; in _rasterBlendingPolygonImageSegment()
512 if (aaSpans->lines[ay].x[0] > x1) aaSpans->lines[ay].x[0] = x1; in _rasterPolygonImageSegment()
513 if (aaSpans->lines[ay].x[1] < x2) aaSpans->lines[ay].x[1] = x2; in _rasterPolygonImageSegment()
841 aaSpans->lines = static_cast<AALine*>(malloc(height * sizeof(AALine))); in _AASpans()
844 aaSpans->lines[i].x[0] = INT32_MAX; in _AASpans()
845 aaSpans->lines[i].x[1] = 0; in _AASpans()
[all …]
/lvgl-latest/tests/src/test_cases/widgets/
Dtest_span.c178 const int32_t lines = 100; in test_spangroup_set_max_lines() local
180 lv_spangroup_set_max_lines(spangroup, lines); in test_spangroup_set_max_lines()
182 TEST_ASSERT_EQUAL_INT32(lines, lv_spangroup_get_max_lines(spangroup)); in test_spangroup_set_max_lines()
187 int32_t lines; in test_spangroup_get_max_lines_for_new_span_group() local
189 lines = lv_spangroup_get_max_lines(spangroup); in test_spangroup_get_max_lines_for_new_span_group()
191 TEST_ASSERT_EQUAL_INT32(-1, lines); in test_spangroup_get_max_lines_for_new_span_group()
193 lines = 3; in test_spangroup_get_max_lines_for_new_span_group()
194 lv_spangroup_set_max_lines(spangroup, lines); in test_spangroup_get_max_lines_for_new_span_group()
195 lines = lv_spangroup_get_max_lines(spangroup); in test_spangroup_get_max_lines_for_new_span_group()
197 TEST_ASSERT_EQUAL_INT32(3, lines); in test_spangroup_get_max_lines_for_new_span_group()
/lvgl-latest/scripts/
Dupdate_version.py57 lines = file.readlines()
60 for i, line in enumerate(lines):
63 lines[i] = line_with_version
71 file.writelines(lines)
/lvgl-latest/docs/details/widgets/
Dchart.rst15 - 0 or more background division lines (horizontal and vertical),
43 Horizontal and Vertical division lines
97 - The chart's background (with optional division lines)
116 background <typical bg props>` and line style properties (for division lines).
123 - LINE chart: *line* properties are used by lines.
134 or ``height`` are set to 0, only the cursor's lines are drawn.
149 - :cpp:enumerator:`LV_CHART_TYPE_LINE`: Draw lines between data points. Data points
155 lines between the points if line-width style values for
268 horizontally, the Chart will draw only vertical lines to make the
271 draws a vertical lines between them to ensure no peaks are missed.
[all …]
Dline.rst10 The Line Widget is capable of drawing straight lines between a set of
30 the Widget by the :cpp:expr:`lv_line_set_points(lines, point_array, point_cnt)`
Dlabel.rst96 explicitly set (using e.g.\ :cpp:func:`lv_obj_set_width` or a layout), the lines
101 - :cpp:enumerator:`LV_LABEL_LONG_WRAP` Wrap lines that are too long. If the height is :c:macro:`LV_…
150 To horizontally align the lines of a Label the `text_align` style property can be used with
156 - the text has multiple lines with different line lengths.
Dspangroup.rst115 - :cpp:enumerator:`LV_SPAN_MODE_BREAK` Keep width; break lines that are too long and auto-expand he…
145 of lines to be displayed in :cpp:enumerator:`LV_SPAN_MODE_BREAK` mode. A negative
Dcanvas.rst12 anything. Rectangles, text, images, lines, arcs, etc. can be drawn here using
Dmsgbox.rst16 The text will be broken into multiple lines and the height
Dscale.rst158 Sheets) take precedence while drawing the PARTS (lines, arcs, ticks and labels) of
253 - For tick lines (:cpp:enumerator:`LV_PART_ITEMS` and :cpp:enumerator:`LV_PART_INDICATOR`):
Dtextarea.rst12 it. Text or characters can be added to it. Long lines are wrapped and when the
/lvgl-latest/src/widgets/span/
Dlv_span_private.h43 int32_t lines; member
Dlv_span.c247 void lv_spangroup_set_max_lines(lv_obj_t * obj, int32_t lines) in lv_spangroup_set_max_lines() argument
251 spans->lines = lines; in lv_spangroup_set_max_lines()
349 return spans->lines; in lv_spangroup_get_max_lines()
464 int32_t lines = spans->lines < 0 ? INT32_MAX : spans->lines; in lv_spangroup_get_expand_height() local
549 if(line_cnt >= lines) { in lv_spangroup_get_expand_height()
631 spans->lines = -1; in lv_spangroup_constructor()
Dlv_span.h133 void lv_spangroup_set_max_lines(lv_obj_t * obj, int32_t lines);
/lvgl-latest/docs/intro/add-lvgl-to-your-project/
Dbuilding_lvgl.rst12 To add LVGL to your Makefile based build system add these lines to your
Dthreading.rst273 You should also add the following lines to your input device read
/lvgl-latest/examples/widgets/chart/
Dindex.rst27 Faded area line chart with custom division lines
/lvgl-latest/docs/details/integration/driver/display/
Dst7796.rst9 source lines and 480 gate lines driving circuits. The ST7796S is capable of connecting directly to …
Dlcd_stm32_guide.rst127 #. Save the file, then open Core/Src/main.c. Add the following lines to the Private includes (if yo…
137 #. Add the following lines to Private defines (change them according to your LCD specs):
146 #. Add the following lines to the Private variables:
161 #. Add the following lines after USER CODE BEGIN RTOS_THREADS:
/lvgl-latest/src/draw/renesas/dave2d/
Dlv_draw_dave2d.c135 int32_t lines = lv_area_get_height(area); in _dave2d_buf_invalidate_cache_cb() local
141 for(i = 0; i < lines; i++) { in _dave2d_buf_invalidate_cache_cb()
/lvgl-latest/docs/
DREADME.md187 For improved readability in the .RST file, place at least 2 blank lines above section headings.
223 - If you want to span multiple lines, indent subsequent
224 lines to align with item text like this.
DCODING_STYLE.rst89 * on subsequent lines. List of accepted values:
124 - Short "code summaries" of a few lines are accepted: ``/* Calculate new coordinates */``
135 - Blank lines within comments are desirable when they improve clarity and readability.
/lvgl-latest/docs/details/integration/chip/
Despressif.rst156 The core functionality requires only a few lines. The following example draws the image as well.
191 To make your configuration permanent, add the following lines to ``sdkconfig.defaults``:
Dstm32.rst279 when blending fills and images. Some STM32 product lines such as STM32F4 STM32F7, STM32L4,
/lvgl-latest/docs/details/base-widget/styles/
Dstyle-properties.rst965 Set width of lines in pixels.
979 Set width of dashes in pixels. Note that dash works only on horizontal and vertical lines
993 Set gap between dashes in pixels. Note that dash works only on horizontal and vertical lines
1007 Make end points of the lines rounded. `true`: rounded, `false`: perpendicular line ending
1021 Set color of lines.
1035 Set opacity of lines.
1213 Set how to align the lines of the text. Note that it doesn't align the Widget itself, only the line…

12