Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_jdk
提交
89f5eeb6
D
dragonwell8_jdk
项目概览
openanolis
/
dragonwell8_jdk
通知
4
Star
2
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
dragonwell8_jdk
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
89f5eeb6
编写于
11月 28, 2014
作者:
S
serb
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
8059944: [OGL] Metrics for a method choice copying of texture should be improved
Reviewed-by: bae, prr
上级
5e731832
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
6 addition
and
3 deletion
+6
-3
src/share/native/sun/java2d/opengl/OGLBlitLoops.c
src/share/native/sun/java2d/opengl/OGLBlitLoops.c
+3
-0
src/share/native/sun/java2d/opengl/OGLContext.c
src/share/native/sun/java2d/opengl/OGLContext.c
+2
-2
src/share/native/sun/java2d/opengl/OGLContext.h
src/share/native/sun/java2d/opengl/OGLContext.h
+1
-1
未找到文件。
src/share/native/sun/java2d/opengl/OGLBlitLoops.c
浏览文件 @
89f5eeb6
...
...
@@ -674,6 +674,9 @@ OGLBlitLoops_Blit(JNIEnv *env,
viaTexture
=
JNI_TRUE
;
break
;
#endif
case
OGLC_VENDOR_INTEL
:
viaTexture
=
JNI_TRUE
;
break
;
default:
// just use the glDrawPixels() codepath
viaTexture
=
JNI_FALSE
;
...
...
src/share/native/sun/java2d/opengl/OGLContext.c
浏览文件 @
89f5eeb6
...
...
@@ -917,8 +917,8 @@ OGLContext_GetExtensionInfo(JNIEnv *env, jint *caps)
vcap
=
OGLC_VENDOR_ATI
;
}
else
if
(
strncmp
(
vendor
,
"NVIDIA"
,
6
)
==
0
)
{
vcap
=
OGLC_VENDOR_NVIDIA
;
}
else
if
(
strncmp
(
vendor
,
"
Sun"
,
3
)
==
0
)
{
vcap
=
OGLC_VENDOR_
SUN
;
}
else
if
(
strncmp
(
vendor
,
"
Intel"
,
5
)
==
0
)
{
vcap
=
OGLC_VENDOR_
INTEL
;
}
// REMIND: new in 7 - check if needs fixing
*
caps
|=
((
vcap
&
OGLC_VCAP_MASK
)
<<
OGLC_VCAP_OFFSET
);
...
...
src/share/native/sun/java2d/opengl/OGLContext.h
浏览文件 @
89f5eeb6
...
...
@@ -152,7 +152,7 @@ typedef struct {
#define OGLC_VENDOR_OTHER 0
#define OGLC_VENDOR_ATI 1
#define OGLC_VENDOR_NVIDIA 2
#define OGLC_VENDOR_
SUN
3
#define OGLC_VENDOR_
INTEL
3
#define OGLC_VCAP_MASK 0x3
#define OGLC_VCAP_OFFSET 24
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录