i80_controller sample
lv_line_t::point_array
is only used within i80_controller sample.
Symbol previews are coming soon...
Symbols
loading...
Files
loading...
Summary
Syntax
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
i80_controller sample
lv_line_t::point_array
lv_line_t::point_array field
Pointer to an array with the points of the line
Syntax
Show:
Summary
Declaration
from
lv_line_private.h:33
union
{
const
lv_point_precise_t
*
constant
;
lv_point_precise_t
*
mut
;
}
point_array
;
Examples
References
from
examples
Code
Location
Referrer
}
point_array
;
/**< Pointer to an array with the points of the line*/
lv_line_private.h:36
return
line
->
point_array
.
constant
;
lv_line.c:99
lv_line_get_points()
return
line
->
point_array
.
mut
;
lv_line.c:127
lv_line_get_points_mutable()
line
->
point_array
.
constant
=
NULL
;
lv_line.c:151
lv_line_constructor()
line
->
point_array
.
constant
=
points
;
lv_line.c:165
line_set_points()
if
(
line
->
point_num
==
0
||
line
->
point_array
.
constant
==
NULL
)
return
;
lv_line.c:206
lv_line_event()
if
(
!
LV_COORD_IS_PCT
(
(
int32_t
)
line
->
point_array
.
constant
[
i
]
.
x
)
)
{
lv_line.c:214
lv_line_event()
w
=
(
int32_t
)
LV_MAX
(
line
->
point_array
.
constant
[
i
]
.
x
,
w
)
;
lv_line.c:215
lv_line_event()
if
(
!
LV_COORD_IS_PCT
(
(
int32_t
)
line
->
point_array
.
constant
[
i
]
.
y
)
)
{
lv_line.c:218
lv_line_event()
h
=
(
int32_t
)
LV_MAX
(
line
->
point_array
.
constant
[
i
]
.
y
,
h
)
;
lv_line.c:219
lv_line_event()
if
(
line
->
point_num
==
0
||
line
->
point_array
.
constant
==
NULL
)
return
;
lv_line.c:230
lv_line_event()
line_dsc
.
p1
.
x
=
resolve_point_coord
(
line
->
point_array
.
constant
[
i
]
.
x
,
w
)
+
x_ofs
;
lv_line.c:247
lv_line_event()
line_dsc
.
p1
.
y
=
resolve_point_coord
(
line
->
point_array
.
constant
[
i
]
.
y
,
h
)
;
lv_line.c:248
lv_line_event()
line_dsc
.
p2
.
x
=
resolve_point_coord
(
line
->
point_array
.
constant
[
i
+
1
]
.
x
,
w
)
+
x_ofs
;
lv_line.c:250
lv_line_event()
line_dsc
.
p2
.
y
=
resolve_point_coord
(
line
->
point_array
.
constant
[
i
+
1
]
.
y
,
h
)
;
lv_line.c:251
lv_line_event()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
lv_line_t::point_array
is read by 5 functions:
All items filtered out
lv_line_t::point_array
lv_line_get_points()
lv_line_get_points_mutable()
lv_line_constructor()
line_set_points()
lv_line_event()
All items filtered out
Class Tree
from
examples
All items filtered out
All items filtered out
Override Tree
from
examples
All items filtered out
All items filtered out
Implementations
from
examples
All items filtered out
All items filtered out
Instances
from
examples
Lifecycle
from
examples
All items filtered out
All items filtered out