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
617438d7
Commit
617438d7
authored
Nov 29, 2017
by
Gabor Kiss-Vamosi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lv_draw_vbasic: minor updates
parent
dfb07891
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
9 deletions
+16
-9
lv_draw_vbasic.c
lv_draw/lv_draw_vbasic.c
+16
-9
No files found.
lv_draw/lv_draw_vbasic.c
View file @
617438d7
...
...
@@ -26,7 +26,7 @@
/*********************
* DEFINES
*********************/
#define VFILL_HW_ACC_
WIDTH
_LIMIT 50
/*Always fill < 50 px with 'sw_color_fill' because of the hw. init overhead*/
#define VFILL_HW_ACC_
SIZE
_LIMIT 50
/*Always fill < 50 px with 'sw_color_fill' because of the hw. init overhead*/
/**********************
* TYPEDEFS
...
...
@@ -122,11 +122,14 @@ void lv_vfill(const lv_area_t * cords_p, const lv_area_t * mask_p,
/*Move the vdb_tmp to the first row*/
vdb_buf_tmp
+=
vdb_width
*
vdb_rel_a
.
y1
;
lv_coord_t
w
=
lv_area_get_width
(
&
vdb_rel_a
);
if
(
w
<
VFILL_HW_ACC_WIDTH_LIMIT
)
{
/*Don't use hw. acc. for every small fill (because of the init overhead)*/
/*Don't use hw. acc. for every small fill (because of the init overhead)*/
if
(
w
<
VFILL_HW_ACC_SIZE_LIMIT
)
{
sw_color_fill
(
&
vdb_p
->
area
,
vdb_buf_tmp
,
&
vdb_rel_a
,
color
,
opa
);
}
else
if
(
opa
==
LV_OPA_COVER
)
{
}
/*Not opaque fill*/
else
if
(
opa
==
LV_OPA_COVER
)
{
/*Use hw fill if present*/
if
(
lv_disp_is_mem_fill_supported
())
{
lv_coord_t
row
;
...
...
@@ -136,7 +139,7 @@ void lv_vfill(const lv_area_t * cords_p, const lv_area_t * mask_p,
}
}
/*Use hw blend if present and the area is not too small*/
else
if
(
lv_area_get_height
(
&
vdb_rel_a
)
>
VFILL_HW_ACC_
WIDTH
_LIMIT
&&
else
if
(
lv_area_get_height
(
&
vdb_rel_a
)
>
VFILL_HW_ACC_
SIZE
_LIMIT
&&
lv_disp_is_mem_blend_supported
())
{
if
(
color_map
[
0
].
full
!=
color
.
full
||
last_width
!=
w
)
{
...
...
@@ -158,12 +161,11 @@ void lv_vfill(const lv_area_t * cords_p, const lv_area_t * mask_p,
sw_color_fill
(
&
vdb_p
->
area
,
vdb_buf_tmp
,
&
vdb_rel_a
,
color
,
opa
);
}
}
/*
O
pacity*/
/*
Fill with o
pacity*/
else
{
if
(
lv_disp_is_mem_blend_supported
()
==
false
)
{
sw_color_fill
(
&
vdb_p
->
area
,
vdb_buf_tmp
,
&
vdb_rel_a
,
color
,
opa
);
}
else
{
/*Use hw blend if present*/
if
(
lv_disp_is_mem_blend_supported
())
{
if
(
color_map
[
0
].
full
!=
color
.
full
||
last_width
!=
w
)
{
uint16_t
i
;
for
(
i
=
0
;
i
<
w
;
i
++
)
{
...
...
@@ -177,6 +179,11 @@ void lv_vfill(const lv_area_t * cords_p, const lv_area_t * mask_p,
lv_disp_mem_blend
(
&
vdb_buf_tmp
[
vdb_rel_a
.
x1
],
color_map
,
w
,
opa
);
vdb_buf_tmp
+=
vdb_width
;
}
}
/*Use sw fill with opa if no better option*/
else
{
sw_color_fill
(
&
vdb_p
->
area
,
vdb_buf_tmp
,
&
vdb_rel_a
,
color
,
opa
);
}
}
}
...
...
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