Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_jdk
提交
6f0a576b
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看板
提交
6f0a576b
编写于
10月 28, 2008
作者:
T
tdv
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
6764257: D3D/OGL: color is not reset properly after save/restoreState() [RSL]
Reviewed-by: campbell
上级
53539f99
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
115 addition
and
5 deletion
+115
-5
src/share/classes/sun/java2d/pipe/BufferedContext.java
src/share/classes/sun/java2d/pipe/BufferedContext.java
+8
-5
test/sun/java2d/pipe/hw/RSLContextInvalidationTest/RSLContextInvalidationTest.java
...SLContextInvalidationTest/RSLContextInvalidationTest.java
+107
-0
未找到文件。
src/share/classes/sun/java2d/pipe/BufferedContext.java
浏览文件 @
6f0a576b
...
...
@@ -90,7 +90,8 @@ public abstract class BufferedContext {
private
Region
validatedClip
;
private
Composite
validatedComp
;
private
Paint
validatedPaint
;
private
boolean
isValidatedPaintAColor
;
// renamed from isValidatedPaintAColor as part of a work around for 6764257
private
boolean
isValidatedPaintJustAColor
;
private
int
validatedRGB
;
private
int
validatedFlags
;
private
boolean
xformInUse
;
...
...
@@ -182,7 +183,7 @@ public abstract class BufferedContext {
if
(
paint
instanceof
Color
)
{
// REMIND: not 30-bit friendly
int
newRGB
=
((
Color
)
paint
).
getRGB
();
if
(
isValidatedPaintAColor
)
{
if
(
isValidatedPaint
Just
AColor
)
{
if
(
newRGB
!=
validatedRGB
)
{
validatedRGB
=
newRGB
;
updatePaint
=
true
;
...
...
@@ -190,13 +191,13 @@ public abstract class BufferedContext {
}
else
{
validatedRGB
=
newRGB
;
updatePaint
=
true
;
isValidatedPaintAColor
=
true
;
isValidatedPaint
Just
AColor
=
true
;
}
}
else
if
(
validatedPaint
!=
paint
)
{
updatePaint
=
true
;
// this should be set when we are switching from paint to color
// in which case this condition will be true
isValidatedPaintAColor
=
false
;
isValidatedPaint
Just
AColor
=
false
;
}
if
((
currentContext
!=
this
)
||
...
...
@@ -281,7 +282,7 @@ public abstract class BufferedContext {
txChanged
=
true
;
}
// non-Color paints may require paint revalidation
if
(!
isValidatedPaintAColor
&&
txChanged
)
{
if
(!
isValidatedPaint
Just
AColor
&&
txChanged
)
{
updatePaint
=
true
;
}
...
...
@@ -427,10 +428,12 @@ public abstract class BufferedContext {
resetTransform
();
resetComposite
();
resetClip
();
BufferedPaints
.
resetPaint
(
rq
);
invalidateSurfaces
();
validatedComp
=
null
;
validatedClip
=
null
;
validatedPaint
=
null
;
isValidatedPaintJustAColor
=
false
;
xformInUse
=
false
;
}
...
...
test/sun/java2d/pipe/hw/RSLContextInvalidationTest/RSLContextInvalidationTest.java
0 → 100644
浏览文件 @
6f0a576b
/*
* Copyright 2007-2008 Sun Microsystems, Inc. All Rights Reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
* CA 95054 USA or visit www.sun.com if you need additional information or
* have any questions.
*/
/*
* @test
* @bug 6764257
* @summary Tests that the color is reset properly after save/restore context
* @author Dmitri.Trembovetski@sun.com: area=Graphics
* @compile -XDignore.symbol.file=true RSLContextInvalidationTest.java
* @run main/othervm RSLContextInvalidationTest
* @run main/othervm -Dsun.java2d.noddraw=true RSLContextInvalidationTest
* @run main/othervm -Dsun.java2d.opengl=True RSLContextInvalidationTest
*/
import
java.awt.Color
;
import
java.awt.Graphics
;
import
java.awt.GraphicsConfiguration
;
import
java.awt.GraphicsDevice
;
import
java.awt.GraphicsEnvironment
;
import
java.awt.image.BufferedImage
;
import
java.awt.image.VolatileImage
;
import
sun.java2d.DestSurfaceProvider
;
import
sun.java2d.Surface
;
import
sun.java2d.pipe.RenderQueue
;
import
sun.java2d.pipe.hw.*
;
public
class
RSLContextInvalidationTest
{
public
static
void
main
(
String
[]
args
)
{
GraphicsEnvironment
ge
=
GraphicsEnvironment
.
getLocalGraphicsEnvironment
();
GraphicsDevice
gd
=
ge
.
getDefaultScreenDevice
();
GraphicsConfiguration
gc
=
gd
.
getDefaultConfiguration
();
VolatileImage
vi
=
gc
.
createCompatibleVolatileImage
(
100
,
100
);
vi
.
validate
(
gc
);
VolatileImage
vi1
=
gc
.
createCompatibleVolatileImage
(
100
,
100
);
vi1
.
validate
(
gc
);
if
(!(
vi
instanceof
DestSurfaceProvider
))
{
System
.
out
.
println
(
"Test considered PASSED: no HW acceleration"
);
return
;
}
DestSurfaceProvider
p
=
(
DestSurfaceProvider
)
vi
;
Surface
s
=
p
.
getDestSurface
();
if
(!(
s
instanceof
AccelSurface
))
{
System
.
out
.
println
(
"Test considered PASSED: no HW acceleration"
);
return
;
}
AccelSurface
dst
=
(
AccelSurface
)
s
;
Graphics
g
=
vi
.
createGraphics
();
g
.
drawImage
(
vi1
,
95
,
95
,
null
);
g
.
setColor
(
Color
.
red
);
g
.
fillRect
(
0
,
0
,
100
,
100
);
g
.
setColor
(
Color
.
black
);
g
.
fillRect
(
0
,
0
,
100
,
100
);
// after this the validated context color is black
RenderQueue
rq
=
dst
.
getContext
().
getRenderQueue
();
rq
.
lock
();
try
{
dst
.
getContext
().
saveState
();
dst
.
getContext
().
restoreState
();
}
finally
{
rq
.
unlock
();
}
// this will cause ResetPaint (it will set color to extended EA=ff,
// which is ffffffff==Color.white)
g
.
drawImage
(
vi1
,
95
,
95
,
null
);
// now try filling with black again, but it will come up as white
// because this fill rect won't validate the color properly
g
.
setColor
(
Color
.
black
);
g
.
fillRect
(
0
,
0
,
100
,
100
);
BufferedImage
bi
=
vi
.
getSnapshot
();
if
(
bi
.
getRGB
(
50
,
50
)
!=
Color
.
black
.
getRGB
())
{
throw
new
RuntimeException
(
"Test FAILED: found color="
+
Integer
.
toHexString
(
bi
.
getRGB
(
50
,
50
))+
" instead of "
+
Integer
.
toHexString
(
Color
.
black
.
getRGB
()));
}
System
.
out
.
println
(
"Test PASSED."
);
}
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录