Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
anbox
提交
930e8710
A
anbox
项目概览
openeuler
/
anbox
通知
24
Star
1
Fork
1
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
A
anbox
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
930e8710
编写于
7月 29, 2020
作者:
zhdguy
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Render: fixed codestyle check bugs
The pointer of get() should check null or not.
上级
9ea3e8e6
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
13 addition
and
1 deletion
+13
-1
src/anbox/graphics/emugl/RenderControl.cpp
src/anbox/graphics/emugl/RenderControl.cpp
+1
-1
src/anbox/graphics/emugl/Renderer.cpp
src/anbox/graphics/emugl/Renderer.cpp
+12
-0
未找到文件。
src/anbox/graphics/emugl/RenderControl.cpp
浏览文件 @
930e8710
...
...
@@ -107,7 +107,7 @@ static EGLint rcGetGLString(EGLenum name, void* buffer, EGLint bufferSize) {
str
=
reinterpret_cast
<
const
char
*>
(
s_gles2
.
glGetString
(
name
));
else
{
str
=
reinterpret_cast
<
const
char
*>
(
s_gles1
.
glGetString
(
name
));
if
((
long
in
t
)
str
==
name
)
{
if
((
intptr_
t
)
str
==
name
)
{
str
=
nullptr
;
}
}
...
...
src/anbox/graphics/emugl/Renderer.cpp
浏览文件 @
930e8710
...
...
@@ -376,6 +376,9 @@ HandleType Renderer::createColorBuffer(int p_width, int p_height,
m_colorbuffers
[
ret
].
refcount
=
1
;
RenderThreadInfo
*
tInfo
=
RenderThreadInfo
::
get
();
if
(
!
tInfo
)
{
return
-
1
;
}
int
tid
=
tInfo
->
m_tid
;
if
(
tid
>
0
)
{
m_procOwnedColorBuffers
[
tid
].
insert
(
ret
);
...
...
@@ -553,6 +556,9 @@ void Renderer::closeColorBuffer(HandleType p_colorbuffer)
std
::
unique_lock
<
std
::
mutex
>
l
(
m_lock
);
closeColorBufferLocked
(
p_colorbuffer
);
RenderThreadInfo
*
tInfo
=
RenderThreadInfo
::
get
();
if
(
!
tInfo
)
{
return
;
}
int
tid
=
tInfo
->
m_tid
;
if
(
tid
>
0
)
{
auto
ite
=
m_procOwnedColorBuffers
.
find
(
tid
);
...
...
@@ -810,6 +816,9 @@ HandleType Renderer::createClientImage(HandleType context, EGLenum target,
HandleType
imgHnd
=
static_cast
<
HandleType
>
(
reinterpret_cast
<
uintptr_t
>
(
image
));
RenderThreadInfo
*
tInfo
=
RenderThreadInfo
::
get
();
if
(
!
tInfo
)
{
return
false
;
}
int
tid
=
tInfo
->
m_tid
;
if
(
tid
>
0
)
{
std
::
unique_lock
<
std
::
mutex
>
l
(
m_lock
);
...
...
@@ -823,6 +832,9 @@ EGLBoolean Renderer::destroyClientImage(HandleType image) {
reinterpret_cast
<
EGLImageKHR
>
(
image
));
if
(
!
ret
)
return
false
;
RenderThreadInfo
*
tInfo
=
RenderThreadInfo
::
get
();
if
(
!
tInfo
)
{
return
false
;
}
int
tid
=
tInfo
->
m_tid
;
if
(
tid
>
0
)
{
std
::
unique_lock
<
std
::
mutex
>
l
(
m_lock
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录