Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Graphic Ui
提交
8d12cfd0
G
Graphic Ui
项目概览
OpenHarmony
/
Graphic Ui
大约 1 年 前同步成功
通知
13
Star
2
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
G
Graphic Ui
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
未验证
提交
8d12cfd0
编写于
3月 10, 2023
作者:
O
openharmony_ci
提交者:
Gitee
3月 10, 2023
浏览文件
操作
浏览文件
下载
差异文件
!914 DrawUtils::DrawTransform中内存泄漏
Merge pull request !914 from 施其昌/master
上级
da1f5b91
a0568cd6
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
4 addition
and
5 deletion
+4
-5
frameworks/draw/draw_utils.cpp
frameworks/draw/draw_utils.cpp
+3
-4
frameworks/draw/draw_utils.h
frameworks/draw/draw_utils.h
+1
-1
未找到文件。
frameworks/draw/draw_utils.cpp
浏览文件 @
8d12cfd0
...
...
@@ -1880,7 +1880,7 @@ BottomHalf:
DrawTriangleTransformPart
(
gfxDstBuffer
,
part
);
}
void
DrawUtils
::
AddBorderToImageData
(
TransformDataInfo
&
newDataInfo
)
void
DrawUtils
::
AddBorderToImageData
(
TransformDataInfo
&
newDataInfo
,
ImageInfo
&
imageinfo
)
{
int16_t
border
=
1
;
// 1 : border width
int16_t
offset
=
border
*
2
;
// 2 : offset
...
...
@@ -1900,7 +1900,6 @@ void DrawUtils::AddBorderToImageData(TransformDataInfo& newDataInfo)
if
((
width
*
newDataInfo
.
pxSize
)
%
FONT_WEIGHT_8
!=
0
)
{
widthInByte
++
;
}
ImageInfo
imageinfo
;
imageinfo
.
header
.
width
=
newDataInfo
.
header
.
width
;
imageinfo
.
header
.
height
=
newDataInfo
.
header
.
height
;
imageinfo
.
dataSize
=
widthInByte
*
height
;
...
...
@@ -1983,6 +1982,7 @@ void DrawUtils::DrawTransform(BufferInfo& gfxDstBuffer,
if
((
gfxDstBuffer
.
virAddr
==
nullptr
)
||
(
dataInfo
.
data
==
nullptr
))
{
return
;
}
ImageInfo
imageinfo
;
TransformDataInfo
newDataInfo
=
dataInfo
;
TransformMap
newTransMap
=
transMap
;
// If the width and height of the rectangle of transMap are not equal to the width and height of the ImageHeader,
...
...
@@ -1990,7 +1990,7 @@ void DrawUtils::DrawTransform(BufferInfo& gfxDstBuffer,
if
((
transMap
.
GetTransMapRect
().
GetWidth
()
==
dataInfo
.
header
.
width
)
&&
(
transMap
.
GetTransMapRect
().
GetHeight
()
==
dataInfo
.
header
.
height
))
{
// Add a border of transparency values to the data
AddBorderToImageData
(
newDataInfo
);
AddBorderToImageData
(
newDataInfo
,
imageinfo
);
// Update the transMap according to new rect width and height
UpdateTransMap
(
newDataInfo
.
header
.
width
,
newDataInfo
.
header
.
height
,
newTransMap
);
}
...
...
@@ -1998,7 +1998,6 @@ void DrawUtils::DrawTransform(BufferInfo& gfxDstBuffer,
Rect
trans
=
newTransMap
.
GetBoxRect
();
trans
.
SetX
(
trans
.
GetX
()
+
position
.
x
);
trans
.
SetY
(
trans
.
GetY
()
+
position
.
y
);
ImageInfo
imageinfo
;
imageinfo
.
data
=
newDataInfo
.
data
;
if
(
!
trans
.
Intersect
(
trans
,
mask
))
{
if
(
newDataInfo
.
data
!=
dataInfo
.
data
)
{
...
...
frameworks/draw/draw_utils.h
浏览文件 @
8d12cfd0
...
...
@@ -355,7 +355,7 @@ private:
static
OpacityType
GetPxAlphaForAlphaImg
(
const
TransformDataInfo
&
dataInfo
,
const
Point
&
point
);
static
void
AddBorderToImageData
(
TransformDataInfo
&
newDataInfo
);
static
void
AddBorderToImageData
(
TransformDataInfo
&
newDataInfo
,
ImageInfo
&
imageinfo
);
static
void
UpdateTransMap
(
int16_t
width
,
int16_t
height
,
TransformMap
&
transMap
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录