mirror of
https://github.com/openjdk/jdk.git
synced 2026-02-13 03:45:19 +00:00
6984543: Test sun/java2d/DirectX/OnScreenRenderingResizeTest fails on GNOME
Testcase correction. Reviewed-by: art
This commit is contained in:
parent
55b13f6d55
commit
331eea0db7
@ -157,7 +157,7 @@ public class OnScreenRenderingResizeTest {
|
||||
if (cnt == 90 && robot != null) {
|
||||
// area where we blitted to should be either white or green
|
||||
Point p = frame.getLocationOnScreen();
|
||||
p.move(in.left+10, in.top+10);
|
||||
p.translate(in.left+10, in.top+10);
|
||||
BufferedImage bi =
|
||||
robot.createScreenCapture(
|
||||
new Rectangle(p.x, p.y, IMAGE_W/2, IMAGE_H/2));
|
||||
@ -166,7 +166,7 @@ public class OnScreenRenderingResizeTest {
|
||||
|
||||
// the are where we didn't render should stay white
|
||||
p = frame.getLocationOnScreen();
|
||||
p.move(in.left, in.top+IMAGE_H+5);
|
||||
p.translate(in.left, in.top+IMAGE_H+5);
|
||||
bi = robot.createScreenCapture(
|
||||
new Rectangle(p.x, p.y,
|
||||
frame.getWidth()-in.left-in.right,
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user