BigW Consortium Gitlab

Unverified Commit bff582d5 by Gabor Kiss-Vamosi Committed by GitHub

Merge pull request #85 from upbeat27/patch-1

Chart draw bug
parents 177af6ca 27707528
......@@ -4,6 +4,19 @@ Major versions released typically when API changes are required
## Contributing
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)
**Architectural changes**
- [x] Rename repository from *proj_pc* to *pc_simulator*
......
......@@ -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);
uint8_t i;
uint16_t i;
lv_point_t p1;
lv_point_t p2;
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)
{
lv_chart_ext_t * ext = lv_obj_get_ext_attr(chart);
uint8_t i;
uint16_t i;
lv_area_t cir_a;
lv_coord_t w = lv_obj_get_width(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)
{
lv_chart_ext_t * ext = lv_obj_get_ext_attr(chart);
uint8_t i;
uint16_t i;
lv_area_t col_a;
lv_area_t col_mask;
bool mask_ret;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment