Skip to content

Commit 6de5474

Browse files
committedOct 24, 2019
8213119: [macos] java/awt/GraphicsDevice/CheckDisplayModes.java fails
Reviewed-by: prr, jdv
1 parent 5343961 commit 6de5474

File tree

3 files changed

+30
-29
lines changed

3 files changed

+30
-29
lines changed
 

‎src/java.desktop/macosx/native/libawt_lwawt/awt/CGraphicsDevice.m

+9-6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2012, 2018, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2012, 2019, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -108,16 +108,18 @@ static CFMutableArrayRef getAllValidDisplayModes(jint displayID){
108108
static CGDisplayModeRef getBestModeForParameters(CFArrayRef allModes, int w, int h, int bpp, int refrate) {
109109
CGDisplayModeRef bestGuess = NULL;
110110
CFIndex numModes = allModes ? CFArrayGetCount(allModes) : 0, n;
111-
int thisBpp = 0;
111+
112112
for(n = 0; n < numModes; n++ ) {
113113
CGDisplayModeRef cRef = (CGDisplayModeRef) CFArrayGetValueAtIndex(allModes, n);
114114
if(cRef == NULL) {
115115
continue;
116116
}
117117
CFStringRef modeString = CGDisplayModeCopyPixelEncoding(cRef);
118-
thisBpp = getBPPFromModeString(modeString);
118+
int thisBpp = getBPPFromModeString(modeString);
119119
CFRelease(modeString);
120-
if (thisBpp != bpp || (int)CGDisplayModeGetHeight(cRef) != h || (int)CGDisplayModeGetWidth(cRef) != w) {
120+
int thisH = (int)CGDisplayModeGetHeight(cRef);
121+
int thisW = (int)CGDisplayModeGetWidth(cRef);
122+
if (thisBpp != bpp || thisH != h || thisW != w) {
121123
// One of the key parameters does not match
122124
continue;
123125
}
@@ -128,11 +130,12 @@ static CGDisplayModeRef getBestModeForParameters(CFArrayRef allModes, int w, int
128130

129131
// Refresh rate might be 0 in display mode and we ask for specific display rate
130132
// but if we do not find exact match then 0 refresh rate might be just Ok
131-
if (CGDisplayModeGetRefreshRate(cRef) == refrate) {
133+
int thisRefrate = (int)CGDisplayModeGetRefreshRate(cRef);
134+
if (thisRefrate == refrate) {
132135
// Exact match
133136
return cRef;
134137
}
135-
if (CGDisplayModeGetRefreshRate(cRef) == 0) {
138+
if (thisRefrate == 0) {
136139
// Not exactly what was asked for, but may fit our needs if we don't find an exact match
137140
bestGuess = cRef;
138141
}

‎test/jdk/ProblemList.txt

-1
Original file line numberDiff line numberDiff line change
@@ -527,7 +527,6 @@ java/awt/font/FontNames/LocaleFamilyNames.java 8213129 windows-all
527527

528528
java/awt/Frame/DisposeParentGC/DisposeParentGC.java 8079786 macosx-all
529529
java/awt/FullScreen/NoResizeEventOnDMChangeTest/NoResizeEventOnDMChangeTest.java 8169468 macosx-all
530-
java/awt/GraphicsDevice/CheckDisplayModes.java 8213119 macosx-all
531530
java/awt/TextArea/AutoScrollOnSelectAndAppend/AutoScrollOnSelectAndAppend.java 8213120 macosx-all
532531
java/awt/Window/MainKeyWindowTest/TestMainKeyWindow.java 8213126 macosx-all
533532

‎test/jdk/java/awt/GraphicsDevice/CheckDisplayModes.java

+21-22
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2013, 2016, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -24,10 +24,8 @@
2424
/*
2525
* @test
2626
* @key headful
27-
* @bug 8007146
27+
* @bug 8007146 8213119
2828
* @summary [macosx] Setting a display mode crashes JDK under VNC
29-
* @author Alexander Scherbatiy
30-
* @run main CheckDisplayModes
3129
*/
3230
import java.awt.DisplayMode;
3331
import java.awt.GraphicsDevice;
@@ -37,27 +35,28 @@ public class CheckDisplayModes {
3735

3836
public static void main(String[] args) {
3937
GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphicsEnvironment();
40-
GraphicsDevice graphicDevice = ge.getDefaultScreenDevice();
41-
if (!graphicDevice.isDisplayChangeSupported()) {
42-
System.err.println("Display mode change is not supported on this host. Test is considered passed.");
43-
return;
44-
}
45-
DisplayMode defaultDisplayMode = graphicDevice.getDisplayMode();
46-
checkDisplayMode(defaultDisplayMode);
47-
graphicDevice.setDisplayMode(defaultDisplayMode);
38+
for (GraphicsDevice graphicDevice : ge.getScreenDevices()) {
39+
if (!graphicDevice.isDisplayChangeSupported()) {
40+
System.err.println("Display mode change is not supported on this host. Test is considered passed.");
41+
continue;
42+
}
43+
DisplayMode defaultDisplayMode = graphicDevice.getDisplayMode();
44+
checkDisplayMode(defaultDisplayMode);
45+
graphicDevice.setDisplayMode(defaultDisplayMode);
4846

49-
DisplayMode[] displayModes = graphicDevice.getDisplayModes();
50-
boolean isDefaultDisplayModeIncluded = false;
51-
for (DisplayMode displayMode : displayModes) {
52-
checkDisplayMode(displayMode);
53-
graphicDevice.setDisplayMode(displayMode);
54-
if (defaultDisplayMode.equals(displayMode)) {
55-
isDefaultDisplayModeIncluded = true;
47+
DisplayMode[] displayModes = graphicDevice.getDisplayModes();
48+
boolean isDefaultDisplayModeIncluded = false;
49+
for (DisplayMode displayMode : displayModes) {
50+
checkDisplayMode(displayMode);
51+
graphicDevice.setDisplayMode(displayMode);
52+
if (defaultDisplayMode.equals(displayMode)) {
53+
isDefaultDisplayModeIncluded = true;
54+
}
5655
}
57-
}
5856

59-
if (!isDefaultDisplayModeIncluded) {
60-
throw new RuntimeException("Default display mode is not included");
57+
if (!isDefaultDisplayModeIncluded) {
58+
throw new RuntimeException("Default display mode is not included");
59+
}
6160
}
6261
}
6362

0 commit comments

Comments
 (0)
Please sign in to comment.