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
eba3105c
Commit
eba3105c
authored
May 25, 2018
by
Gabor Kiss-Vamosi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
start a brand new line drawing algorithm
parent
6bf1a8ff
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
41 additions
and
0 deletions
+41
-0
lv_draw.c
lv_draw/lv_draw.c
+0
-0
lv_draw.h
lv_draw/lv_draw.h
+3
-0
lv_draw_line.c
lv_draw/lv_draw_line.c
+0
-0
lv_draw_line.h
lv_draw/lv_draw_line.h
+38
-0
No files found.
lv_draw/lv_draw.c
View file @
eba3105c
This diff is collapsed.
Click to expand it.
lv_draw/lv_draw.h
View file @
eba3105c
...
...
@@ -128,6 +128,9 @@ void lv_draw_img(const lv_area_t * coords, const lv_area_t * mask,
void
lv_draw_line
(
const
lv_point_t
*
p1
,
const
lv_point_t
*
p2
,
const
lv_area_t
*
mask_p
,
const
lv_style_t
*
style_p
);
#if LV_ANTIALIAS != 0
lv_opa_t
antialias_get_opa
(
lv_coord_t
seg
,
lv_coord_t
px_id
,
lv_opa_t
line_opa
);
#endif
/**********************
* GLOBAL VARIABLES
...
...
lv_draw/lv_draw_line.c
View file @
eba3105c
This diff is collapsed.
Click to expand it.
lv_draw/lv_draw_line.h
View file @
eba3105c
/**
* @file lv_draw_line.h
*
*/
#ifndef LV_DRAW_LINE_H
#define LV_DRAW_LINE_H
#ifdef __cplusplus
extern
"C"
{
#endif
/*********************
* INCLUDES
*********************/
/*********************
* DEFINES
*********************/
/**********************
* TYPEDEFS
**********************/
/**********************
* GLOBAL PROTOTYPES
**********************/
/**********************
* MACROS
**********************/
#ifdef __cplusplus
}
/* extern "C" */
#endif
#endif
/*LV_DRAW_LINE_H*/
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