BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
L
lvgl
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
lvgl
Commits
bff582d5
Unverified
Commit
bff582d5
authored
Jan 26, 2018
by
Gabor Kiss-Vamosi
Committed by
GitHub
Jan 26, 2018
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #85 from upbeat27/patch-1
Chart draw bug
parents
177af6ca
27707528
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
3 deletions
+16
-3
TODO_MAJOR.md
docs/TODO_MAJOR.md
+13
-0
lv_chart.c
lv_objx/lv_chart.c
+3
-3
No files found.
docs/TODO_MAJOR.md
View file @
bff582d5
...
@@ -4,6 +4,19 @@ Major versions released typically when API changes are required
...
@@ -4,6 +4,19 @@ Major versions released typically when API changes are required
## Contributing
## Contributing
Please create an issue to suggest a new feature instead of adding pull request to this file.
Please create an issue to suggest a new feature instead of adding pull request to this file.
## v6 (released at: in progrss)
-
[
]
Add the basic functions (e.g. lv_obj_set_width) to every object type as inline
-
[
]
Image storage with header (#65)
-
[
]
Font anti-alias: use 1 bit and grayscale fonts too (better result then downscaling)
-
[
]
LV_ANTIALIAS_FONT removal (use other font instead)
-
[
]
Store image anti-alias in header
-
[
]
lv_img_upscale removal (generate image with anti-alias flag instead)
-
[
]
LV_ANTIALIAS_LINE
-
[
]
LV_ANTIALAIS_RADIUS
-
[
]
LV_ANTIALIAS removal (use other specific anti-alias options)
-
[
]
web based image converter
-
[
]
web based font converter
## v5 (released at: 20.12.2017)
## v5 (released at: 20.12.2017)
**Architectural changes**
**Architectural changes**
-
[
x
]
Rename repository from
*proj_pc*
to
*pc_simulator*
-
[
x
]
Rename repository from
*proj_pc*
to
*pc_simulator*
...
...
lv_objx/lv_chart.c
View file @
bff582d5
...
@@ -514,7 +514,7 @@ static void lv_chart_draw_lines(lv_obj_t * chart, const lv_area_t * mask)
...
@@ -514,7 +514,7 @@ static void lv_chart_draw_lines(lv_obj_t * chart, const lv_area_t * mask)
{
{
lv_chart_ext_t
*
ext
=
lv_obj_get_ext_attr
(
chart
);
lv_chart_ext_t
*
ext
=
lv_obj_get_ext_attr
(
chart
);
uint
8
_t
i
;
uint
16
_t
i
;
lv_point_t
p1
;
lv_point_t
p1
;
lv_point_t
p2
;
lv_point_t
p2
;
lv_coord_t
w
=
lv_obj_get_width
(
chart
);
lv_coord_t
w
=
lv_obj_get_width
(
chart
);
...
@@ -562,7 +562,7 @@ static void lv_chart_draw_points(lv_obj_t * chart, const lv_area_t * mask)
...
@@ -562,7 +562,7 @@ static void lv_chart_draw_points(lv_obj_t * chart, const lv_area_t * mask)
{
{
lv_chart_ext_t
*
ext
=
lv_obj_get_ext_attr
(
chart
);
lv_chart_ext_t
*
ext
=
lv_obj_get_ext_attr
(
chart
);
uint
8
_t
i
;
uint
16
_t
i
;
lv_area_t
cir_a
;
lv_area_t
cir_a
;
lv_coord_t
w
=
lv_obj_get_width
(
chart
);
lv_coord_t
w
=
lv_obj_get_width
(
chart
);
lv_coord_t
h
=
lv_obj_get_height
(
chart
);
lv_coord_t
h
=
lv_obj_get_height
(
chart
);
...
@@ -611,7 +611,7 @@ static void lv_chart_draw_cols(lv_obj_t * chart, const lv_area_t * mask)
...
@@ -611,7 +611,7 @@ static void lv_chart_draw_cols(lv_obj_t * chart, const lv_area_t * mask)
{
{
lv_chart_ext_t
*
ext
=
lv_obj_get_ext_attr
(
chart
);
lv_chart_ext_t
*
ext
=
lv_obj_get_ext_attr
(
chart
);
uint
8
_t
i
;
uint
16
_t
i
;
lv_area_t
col_a
;
lv_area_t
col_a
;
lv_area_t
col_mask
;
lv_area_t
col_mask
;
bool
mask_ret
;
bool
mask_ret
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment