src/java.desktop/macosx/classes/sun/awt/CGraphicsDevice.java
author jdv
Fri, 21 Jun 2019 12:08:37 +0530
branchmetal-prototype-branch
changeset 57416 e153174dba06
parent 57196 a95707a39ff5
permissions -rw-r--r--
Merge JDK-8220154 initial metal implementation patch to the jdk sandbox branch Reviewed-by: avu, prr, kcr Contributed-by: avu(Jetbrains), aghaisas, jdv
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
     1
/*
53673
e04d39094915 8214076: Cleanup the code related to GraphicsEnvironment/Device/Configuration
serb
parents: 52537
diff changeset
     2
 * Copyright (c) 2012, 2019, Oracle and/or its affiliates. All rights reserved.
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
     4
 *
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    10
 *
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    15
 * accompanied this code).
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    16
 *
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    20
 *
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    23
 * questions.
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    24
 */
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    25
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    26
package sun.awt;
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    27
15988
6db6e40405cf 8008660: Failure in 2D Queue Flusher thread on Mac
serb
parents: 15331
diff changeset
    28
import java.awt.AWTPermission;
6db6e40405cf 8008660: Failure in 2D Queue Flusher thread on Mac
serb
parents: 15331
diff changeset
    29
import java.awt.DisplayMode;
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    30
import java.awt.GraphicsConfiguration;
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    31
import java.awt.GraphicsDevice;
15989
0fe0985a7bde 8003169: [macosx] JVM crash after disconnecting from projector
serb
parents: 15988
diff changeset
    32
import java.awt.Insets;
52537
814c49afb1a7 8211992: GraphicsConfiguration.getDevice().getDisplayMode() causes JVM crash on Mac
serb
parents: 47216
diff changeset
    33
import java.awt.Rectangle;
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    34
import java.awt.Window;
52537
814c49afb1a7 8211992: GraphicsConfiguration.getDevice().getDisplayMode() causes JVM crash on Mac
serb
parents: 47216
diff changeset
    35
import java.awt.geom.Rectangle2D;
15331
410070becfef 8003173: [macosx] Fullscreen on Mac leaves an empty rectangle
serb
parents: 14166
diff changeset
    36
import java.util.Objects;
52537
814c49afb1a7 8211992: GraphicsConfiguration.getDevice().getDisplayMode() causes JVM crash on Mac
serb
parents: 47216
diff changeset
    37
36900
3940219afc12 8150844: [hidpi] [macosx] -Dsun.java2d.uiScale should be taken into account for OS X
alexsch
parents: 30469
diff changeset
    38
import sun.java2d.SunGraphicsEnvironment;
57416
e153174dba06 Merge JDK-8220154 initial metal implementation patch to the jdk sandbox branch
jdv
parents: 57196
diff changeset
    39
import sun.java2d.macos.MacOSFlags;
e153174dba06 Merge JDK-8220154 initial metal implementation patch to the jdk sandbox branch
jdv
parents: 57196
diff changeset
    40
import sun.java2d.metal.MTLGraphicsConfig;
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    41
import sun.java2d.opengl.CGLGraphicsConfig;
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    42
17151
9bfcf2a592fc 8009012: [macosx] DisplayChangedListener is not implemented in LWWindowPeer/CGraphicsEnvironment
serb
parents: 16840
diff changeset
    43
public final class CGraphicsDevice extends GraphicsDevice
9bfcf2a592fc 8009012: [macosx] DisplayChangedListener is not implemented in LWWindowPeer/CGraphicsEnvironment
serb
parents: 16840
diff changeset
    44
        implements DisplayChangedListener {
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    45
17151
9bfcf2a592fc 8009012: [macosx] DisplayChangedListener is not implemented in LWWindowPeer/CGraphicsEnvironment
serb
parents: 16840
diff changeset
    46
    /**
9bfcf2a592fc 8009012: [macosx] DisplayChangedListener is not implemented in LWWindowPeer/CGraphicsEnvironment
serb
parents: 16840
diff changeset
    47
     * CoreGraphics display ID. This identifier can become non-valid at any time
9bfcf2a592fc 8009012: [macosx] DisplayChangedListener is not implemented in LWWindowPeer/CGraphicsEnvironment
serb
parents: 16840
diff changeset
    48
     * therefore methods, which is using this id should be ready to it.
9bfcf2a592fc 8009012: [macosx] DisplayChangedListener is not implemented in LWWindowPeer/CGraphicsEnvironment
serb
parents: 16840
diff changeset
    49
     */
9bfcf2a592fc 8009012: [macosx] DisplayChangedListener is not implemented in LWWindowPeer/CGraphicsEnvironment
serb
parents: 16840
diff changeset
    50
    private volatile int displayID;
9bfcf2a592fc 8009012: [macosx] DisplayChangedListener is not implemented in LWWindowPeer/CGraphicsEnvironment
serb
parents: 16840
diff changeset
    51
    private volatile double xResolution;
9bfcf2a592fc 8009012: [macosx] DisplayChangedListener is not implemented in LWWindowPeer/CGraphicsEnvironment
serb
parents: 16840
diff changeset
    52
    private volatile double yResolution;
52537
814c49afb1a7 8211992: GraphicsConfiguration.getDevice().getDisplayMode() causes JVM crash on Mac
serb
parents: 47216
diff changeset
    53
    private volatile Rectangle bounds;
17151
9bfcf2a592fc 8009012: [macosx] DisplayChangedListener is not implemented in LWWindowPeer/CGraphicsEnvironment
serb
parents: 16840
diff changeset
    54
    private volatile int scale;
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    55
53673
e04d39094915 8214076: Cleanup the code related to GraphicsEnvironment/Device/Configuration
serb
parents: 52537
diff changeset
    56
    private final GraphicsConfiguration config;
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    57
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    58
    private static AWTPermission fullScreenExclusivePermission;
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    59
13241
92c2140b5bb2 7182902: [macosx] Test api/java_awt/GraphicsDevice/indexTGF.html#SetDisplayMode fails on Mac OS X 10.7
alexsch
parents: 12836
diff changeset
    60
    // Save/restore DisplayMode for the Full Screen mode
92c2140b5bb2 7182902: [macosx] Test api/java_awt/GraphicsDevice/indexTGF.html#SetDisplayMode fails on Mac OS X 10.7
alexsch
parents: 12836
diff changeset
    61
    private DisplayMode originalMode;
92c2140b5bb2 7182902: [macosx] Test api/java_awt/GraphicsDevice/indexTGF.html#SetDisplayMode fails on Mac OS X 10.7
alexsch
parents: 12836
diff changeset
    62
17151
9bfcf2a592fc 8009012: [macosx] DisplayChangedListener is not implemented in LWWindowPeer/CGraphicsEnvironment
serb
parents: 16840
diff changeset
    63
    public CGraphicsDevice(final int displayID) {
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    64
        this.displayID = displayID;
57416
e153174dba06 Merge JDK-8220154 initial metal implementation patch to the jdk sandbox branch
jdv
parents: 57196
diff changeset
    65
        config = MacOSFlags.isMetalEnabled() ?
e153174dba06 Merge JDK-8220154 initial metal implementation patch to the jdk sandbox branch
jdv
parents: 57196
diff changeset
    66
                MTLGraphicsConfig.getConfig(this, displayID, 0) :
e153174dba06 Merge JDK-8220154 initial metal implementation patch to the jdk sandbox branch
jdv
parents: 57196
diff changeset
    67
                CGLGraphicsConfig.getConfig(this, displayID, 0);
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    68
    }
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    69
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    70
    /**
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    71
     * Return a list of all configurations.
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    72
     */
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    73
    @Override
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    74
    public GraphicsConfiguration[] getConfigurations() {
53673
e04d39094915 8214076: Cleanup the code related to GraphicsEnvironment/Device/Configuration
serb
parents: 52537
diff changeset
    75
        return new GraphicsConfiguration[]{config};
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    76
    }
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    77
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    78
    /**
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    79
     * Return the default configuration.
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    80
     */
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    81
    @Override
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    82
    public GraphicsConfiguration getDefaultConfiguration() {
53673
e04d39094915 8214076: Cleanup the code related to GraphicsEnvironment/Device/Configuration
serb
parents: 52537
diff changeset
    83
        return config;
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    84
    }
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    85
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    86
    /**
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    87
     * Return a human-readable screen description.
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    88
     */
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    89
    @Override
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    90
    public String getIDstring() {
17151
9bfcf2a592fc 8009012: [macosx] DisplayChangedListener is not implemented in LWWindowPeer/CGraphicsEnvironment
serb
parents: 16840
diff changeset
    91
        return "Display " + displayID;
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    92
    }
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    93
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    94
    /**
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    95
     * Returns the type of the graphics device.
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    96
     * @see #TYPE_RASTER_SCREEN
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    97
     * @see #TYPE_PRINTER
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    98
     * @see #TYPE_IMAGE_BUFFER
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
    99
     */
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   100
    @Override
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   101
    public int getType() {
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   102
        return TYPE_RASTER_SCREEN;
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   103
    }
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   104
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   105
    public double getXResolution() {
17151
9bfcf2a592fc 8009012: [macosx] DisplayChangedListener is not implemented in LWWindowPeer/CGraphicsEnvironment
serb
parents: 16840
diff changeset
   106
        return xResolution;
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   107
    }
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   108
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   109
    public double getYResolution() {
17151
9bfcf2a592fc 8009012: [macosx] DisplayChangedListener is not implemented in LWWindowPeer/CGraphicsEnvironment
serb
parents: 16840
diff changeset
   110
        return yResolution;
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   111
    }
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   112
52537
814c49afb1a7 8211992: GraphicsConfiguration.getDevice().getDisplayMode() causes JVM crash on Mac
serb
parents: 47216
diff changeset
   113
    Rectangle getBounds() {
814c49afb1a7 8211992: GraphicsConfiguration.getDevice().getDisplayMode() causes JVM crash on Mac
serb
parents: 47216
diff changeset
   114
        return bounds.getBounds();
814c49afb1a7 8211992: GraphicsConfiguration.getDevice().getDisplayMode() causes JVM crash on Mac
serb
parents: 47216
diff changeset
   115
    }
814c49afb1a7 8211992: GraphicsConfiguration.getDevice().getDisplayMode() causes JVM crash on Mac
serb
parents: 47216
diff changeset
   116
15989
0fe0985a7bde 8003169: [macosx] JVM crash after disconnecting from projector
serb
parents: 15988
diff changeset
   117
    public Insets getScreenInsets() {
29256
751f31639710 8072069: Toolkit.getScreenInsets() doesn't update if insets change
anashaty
parents: 28235
diff changeset
   118
        // the insets are queried synchronously and are not cached
751f31639710 8072069: Toolkit.getScreenInsets() doesn't update if insets change
anashaty
parents: 28235
diff changeset
   119
        // since there are no Quartz or Cocoa means to receive notifications
751f31639710 8072069: Toolkit.getScreenInsets() doesn't update if insets change
anashaty
parents: 28235
diff changeset
   120
        // on insets changes (e.g. when the Dock is resized):
751f31639710 8072069: Toolkit.getScreenInsets() doesn't update if insets change
anashaty
parents: 28235
diff changeset
   121
        // the existing CGDisplayReconfigurationCallBack is not notified
751f31639710 8072069: Toolkit.getScreenInsets() doesn't update if insets change
anashaty
parents: 28235
diff changeset
   122
        // as well as the NSApplicationDidChangeScreenParametersNotification
751f31639710 8072069: Toolkit.getScreenInsets() doesn't update if insets change
anashaty
parents: 28235
diff changeset
   123
        // is fired on the Dock location changes only
751f31639710 8072069: Toolkit.getScreenInsets() doesn't update if insets change
anashaty
parents: 28235
diff changeset
   124
        return nativeGetScreenInsets(displayID);
17151
9bfcf2a592fc 8009012: [macosx] DisplayChangedListener is not implemented in LWWindowPeer/CGraphicsEnvironment
serb
parents: 16840
diff changeset
   125
    }
9bfcf2a592fc 8009012: [macosx] DisplayChangedListener is not implemented in LWWindowPeer/CGraphicsEnvironment
serb
parents: 16840
diff changeset
   126
9bfcf2a592fc 8009012: [macosx] DisplayChangedListener is not implemented in LWWindowPeer/CGraphicsEnvironment
serb
parents: 16840
diff changeset
   127
    public int getScaleFactor() {
9bfcf2a592fc 8009012: [macosx] DisplayChangedListener is not implemented in LWWindowPeer/CGraphicsEnvironment
serb
parents: 16840
diff changeset
   128
        return scale;
9bfcf2a592fc 8009012: [macosx] DisplayChangedListener is not implemented in LWWindowPeer/CGraphicsEnvironment
serb
parents: 16840
diff changeset
   129
    }
9bfcf2a592fc 8009012: [macosx] DisplayChangedListener is not implemented in LWWindowPeer/CGraphicsEnvironment
serb
parents: 16840
diff changeset
   130
9bfcf2a592fc 8009012: [macosx] DisplayChangedListener is not implemented in LWWindowPeer/CGraphicsEnvironment
serb
parents: 16840
diff changeset
   131
    public void invalidate(final int defaultDisplayID) {
9bfcf2a592fc 8009012: [macosx] DisplayChangedListener is not implemented in LWWindowPeer/CGraphicsEnvironment
serb
parents: 16840
diff changeset
   132
        displayID = defaultDisplayID;
9bfcf2a592fc 8009012: [macosx] DisplayChangedListener is not implemented in LWWindowPeer/CGraphicsEnvironment
serb
parents: 16840
diff changeset
   133
    }
9bfcf2a592fc 8009012: [macosx] DisplayChangedListener is not implemented in LWWindowPeer/CGraphicsEnvironment
serb
parents: 16840
diff changeset
   134
9bfcf2a592fc 8009012: [macosx] DisplayChangedListener is not implemented in LWWindowPeer/CGraphicsEnvironment
serb
parents: 16840
diff changeset
   135
    @Override
9bfcf2a592fc 8009012: [macosx] DisplayChangedListener is not implemented in LWWindowPeer/CGraphicsEnvironment
serb
parents: 16840
diff changeset
   136
    public void displayChanged() {
9bfcf2a592fc 8009012: [macosx] DisplayChangedListener is not implemented in LWWindowPeer/CGraphicsEnvironment
serb
parents: 16840
diff changeset
   137
        xResolution = nativeGetXResolution(displayID);
9bfcf2a592fc 8009012: [macosx] DisplayChangedListener is not implemented in LWWindowPeer/CGraphicsEnvironment
serb
parents: 16840
diff changeset
   138
        yResolution = nativeGetYResolution(displayID);
52537
814c49afb1a7 8211992: GraphicsConfiguration.getDevice().getDisplayMode() causes JVM crash on Mac
serb
parents: 47216
diff changeset
   139
        bounds = nativeGetBounds(displayID).getBounds(); //does integer rounding
36900
3940219afc12 8150844: [hidpi] [macosx] -Dsun.java2d.uiScale should be taken into account for OS X
alexsch
parents: 30469
diff changeset
   140
        initScaleFactor();
17151
9bfcf2a592fc 8009012: [macosx] DisplayChangedListener is not implemented in LWWindowPeer/CGraphicsEnvironment
serb
parents: 16840
diff changeset
   141
        //TODO configs/fullscreenWindow/modes?
9bfcf2a592fc 8009012: [macosx] DisplayChangedListener is not implemented in LWWindowPeer/CGraphicsEnvironment
serb
parents: 16840
diff changeset
   142
    }
9bfcf2a592fc 8009012: [macosx] DisplayChangedListener is not implemented in LWWindowPeer/CGraphicsEnvironment
serb
parents: 16840
diff changeset
   143
9bfcf2a592fc 8009012: [macosx] DisplayChangedListener is not implemented in LWWindowPeer/CGraphicsEnvironment
serb
parents: 16840
diff changeset
   144
    @Override
9bfcf2a592fc 8009012: [macosx] DisplayChangedListener is not implemented in LWWindowPeer/CGraphicsEnvironment
serb
parents: 16840
diff changeset
   145
    public void paletteChanged() {
9bfcf2a592fc 8009012: [macosx] DisplayChangedListener is not implemented in LWWindowPeer/CGraphicsEnvironment
serb
parents: 16840
diff changeset
   146
        // devices do not need to react to this event.
15989
0fe0985a7bde 8003169: [macosx] JVM crash after disconnecting from projector
serb
parents: 15988
diff changeset
   147
    }
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   148
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   149
    /**
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   150
     * Enters full-screen mode, or returns to windowed mode.
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   151
     */
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   152
    @Override
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   153
    public synchronized void setFullScreenWindow(Window w) {
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   154
        Window old = getFullScreenWindow();
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   155
        if (w == old) {
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   156
            return;
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   157
        }
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   158
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   159
        boolean fsSupported = isFullScreenSupported();
13241
92c2140b5bb2 7182902: [macosx] Test api/java_awt/GraphicsDevice/indexTGF.html#SetDisplayMode fails on Mac OS X 10.7
alexsch
parents: 12836
diff changeset
   160
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   161
        if (fsSupported && old != null) {
21790
dae43c3c462d 8028512: [macosx] Crash in full screen api if incorrect display mode is used
serb
parents: 17151
diff changeset
   162
            // enter windowed mode and restore original display mode
dae43c3c462d 8028512: [macosx] Crash in full screen api if incorrect display mode is used
serb
parents: 17151
diff changeset
   163
            exitFullScreenExclusive(old);
13241
92c2140b5bb2 7182902: [macosx] Test api/java_awt/GraphicsDevice/indexTGF.html#SetDisplayMode fails on Mac OS X 10.7
alexsch
parents: 12836
diff changeset
   164
            if (originalMode != null) {
92c2140b5bb2 7182902: [macosx] Test api/java_awt/GraphicsDevice/indexTGF.html#SetDisplayMode fails on Mac OS X 10.7
alexsch
parents: 12836
diff changeset
   165
                setDisplayMode(originalMode);
92c2140b5bb2 7182902: [macosx] Test api/java_awt/GraphicsDevice/indexTGF.html#SetDisplayMode fails on Mac OS X 10.7
alexsch
parents: 12836
diff changeset
   166
                originalMode = null;
92c2140b5bb2 7182902: [macosx] Test api/java_awt/GraphicsDevice/indexTGF.html#SetDisplayMode fails on Mac OS X 10.7
alexsch
parents: 12836
diff changeset
   167
            }
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   168
        }
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   169
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   170
        super.setFullScreenWindow(w);
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   171
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   172
        if (fsSupported && w != null) {
13241
92c2140b5bb2 7182902: [macosx] Test api/java_awt/GraphicsDevice/indexTGF.html#SetDisplayMode fails on Mac OS X 10.7
alexsch
parents: 12836
diff changeset
   173
            if (isDisplayChangeSupported()) {
92c2140b5bb2 7182902: [macosx] Test api/java_awt/GraphicsDevice/indexTGF.html#SetDisplayMode fails on Mac OS X 10.7
alexsch
parents: 12836
diff changeset
   174
                originalMode = getDisplayMode();
92c2140b5bb2 7182902: [macosx] Test api/java_awt/GraphicsDevice/indexTGF.html#SetDisplayMode fails on Mac OS X 10.7
alexsch
parents: 12836
diff changeset
   175
            }
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   176
            // enter fullscreen mode
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   177
            enterFullScreenExclusive(w);
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   178
        }
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   179
    }
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   180
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   181
    /**
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   182
     * Returns true if this GraphicsDevice supports
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   183
     * full-screen exclusive mode and false otherwise.
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   184
     */
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   185
    @Override
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   186
    public boolean isFullScreenSupported() {
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   187
        return isFSExclusiveModeAllowed();
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   188
    }
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   189
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   190
    private static boolean isFSExclusiveModeAllowed() {
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   191
        SecurityManager security = System.getSecurityManager();
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   192
        if (security != null) {
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   193
            if (fullScreenExclusivePermission == null) {
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   194
                fullScreenExclusivePermission =
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   195
                    new AWTPermission("fullScreenExclusive");
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   196
            }
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   197
            try {
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   198
                security.checkPermission(fullScreenExclusivePermission);
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   199
            } catch (SecurityException e) {
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   200
                return false;
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   201
            }
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   202
        }
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   203
        return true;
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   204
    }
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   205
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   206
    private static void enterFullScreenExclusive(Window w) {
30469
bac0a7ff7e1e 8074028: Remove API references to java.awt.peer
serb
parents: 29256
diff changeset
   207
        FullScreenCapable peer = AWTAccessor.getComponentAccessor().getPeer(w);
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   208
        if (peer != null) {
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   209
            peer.enterFullScreenMode();
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   210
        }
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   211
    }
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   212
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   213
    private static void exitFullScreenExclusive(Window w) {
30469
bac0a7ff7e1e 8074028: Remove API references to java.awt.peer
serb
parents: 29256
diff changeset
   214
        FullScreenCapable peer = AWTAccessor.getComponentAccessor().getPeer(w);
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   215
        if (peer != null) {
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   216
            peer.exitFullScreenMode();
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   217
        }
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   218
    }
12836
66cabfe1972f 7124247: [macosx] Implement GraphicsDevice.setDisplayMode()
kizune
parents: 12636
diff changeset
   219
66cabfe1972f 7124247: [macosx] Implement GraphicsDevice.setDisplayMode()
kizune
parents: 12636
diff changeset
   220
    @Override
66cabfe1972f 7124247: [macosx] Implement GraphicsDevice.setDisplayMode()
kizune
parents: 12636
diff changeset
   221
    public boolean isDisplayChangeSupported() {
66cabfe1972f 7124247: [macosx] Implement GraphicsDevice.setDisplayMode()
kizune
parents: 12636
diff changeset
   222
        return true;
66cabfe1972f 7124247: [macosx] Implement GraphicsDevice.setDisplayMode()
kizune
parents: 12636
diff changeset
   223
    }
66cabfe1972f 7124247: [macosx] Implement GraphicsDevice.setDisplayMode()
kizune
parents: 12636
diff changeset
   224
66cabfe1972f 7124247: [macosx] Implement GraphicsDevice.setDisplayMode()
kizune
parents: 12636
diff changeset
   225
    @Override
15331
410070becfef 8003173: [macosx] Fullscreen on Mac leaves an empty rectangle
serb
parents: 14166
diff changeset
   226
    public void setDisplayMode(final DisplayMode dm) {
14161
2b346f8e3b8f 7175704: [macosx] "8" PIT: NPE in GetDisplayMode fullscreen test
kizune
parents: 13241
diff changeset
   227
        if (dm == null) {
2b346f8e3b8f 7175704: [macosx] "8" PIT: NPE in GetDisplayMode fullscreen test
kizune
parents: 13241
diff changeset
   228
            throw new IllegalArgumentException("Invalid display mode");
2b346f8e3b8f 7175704: [macosx] "8" PIT: NPE in GetDisplayMode fullscreen test
kizune
parents: 13241
diff changeset
   229
        }
15331
410070becfef 8003173: [macosx] Fullscreen on Mac leaves an empty rectangle
serb
parents: 14166
diff changeset
   230
        if (!Objects.equals(dm, getDisplayMode())) {
410070becfef 8003173: [macosx] Fullscreen on Mac leaves an empty rectangle
serb
parents: 14166
diff changeset
   231
            nativeSetDisplayMode(displayID, dm.getWidth(), dm.getHeight(),
21790
dae43c3c462d 8028512: [macosx] Crash in full screen api if incorrect display mode is used
serb
parents: 17151
diff changeset
   232
                    dm.getBitDepth(), dm.getRefreshRate());
dae43c3c462d 8028512: [macosx] Crash in full screen api if incorrect display mode is used
serb
parents: 17151
diff changeset
   233
            if (isFullScreenSupported() && getFullScreenWindow() != null) {
dae43c3c462d 8028512: [macosx] Crash in full screen api if incorrect display mode is used
serb
parents: 17151
diff changeset
   234
                getFullScreenWindow().setSize(dm.getWidth(), dm.getHeight());
15331
410070becfef 8003173: [macosx] Fullscreen on Mac leaves an empty rectangle
serb
parents: 14166
diff changeset
   235
            }
12836
66cabfe1972f 7124247: [macosx] Implement GraphicsDevice.setDisplayMode()
kizune
parents: 12636
diff changeset
   236
        }
66cabfe1972f 7124247: [macosx] Implement GraphicsDevice.setDisplayMode()
kizune
parents: 12636
diff changeset
   237
    }
66cabfe1972f 7124247: [macosx] Implement GraphicsDevice.setDisplayMode()
kizune
parents: 12636
diff changeset
   238
66cabfe1972f 7124247: [macosx] Implement GraphicsDevice.setDisplayMode()
kizune
parents: 12636
diff changeset
   239
    @Override
66cabfe1972f 7124247: [macosx] Implement GraphicsDevice.setDisplayMode()
kizune
parents: 12636
diff changeset
   240
    public DisplayMode getDisplayMode() {
66cabfe1972f 7124247: [macosx] Implement GraphicsDevice.setDisplayMode()
kizune
parents: 12636
diff changeset
   241
        return nativeGetDisplayMode(displayID);
66cabfe1972f 7124247: [macosx] Implement GraphicsDevice.setDisplayMode()
kizune
parents: 12636
diff changeset
   242
    }
66cabfe1972f 7124247: [macosx] Implement GraphicsDevice.setDisplayMode()
kizune
parents: 12636
diff changeset
   243
66cabfe1972f 7124247: [macosx] Implement GraphicsDevice.setDisplayMode()
kizune
parents: 12636
diff changeset
   244
    @Override
66cabfe1972f 7124247: [macosx] Implement GraphicsDevice.setDisplayMode()
kizune
parents: 12636
diff changeset
   245
    public DisplayMode[] getDisplayModes() {
66cabfe1972f 7124247: [macosx] Implement GraphicsDevice.setDisplayMode()
kizune
parents: 12636
diff changeset
   246
        return nativeGetDisplayModes(displayID);
66cabfe1972f 7124247: [macosx] Implement GraphicsDevice.setDisplayMode()
kizune
parents: 12636
diff changeset
   247
    }
66cabfe1972f 7124247: [macosx] Implement GraphicsDevice.setDisplayMode()
kizune
parents: 12636
diff changeset
   248
36900
3940219afc12 8150844: [hidpi] [macosx] -Dsun.java2d.uiScale should be taken into account for OS X
alexsch
parents: 30469
diff changeset
   249
    private void initScaleFactor() {
3940219afc12 8150844: [hidpi] [macosx] -Dsun.java2d.uiScale should be taken into account for OS X
alexsch
parents: 30469
diff changeset
   250
        if (SunGraphicsEnvironment.isUIScaleEnabled()) {
3940219afc12 8150844: [hidpi] [macosx] -Dsun.java2d.uiScale should be taken into account for OS X
alexsch
parents: 30469
diff changeset
   251
            double debugScale = SunGraphicsEnvironment.getDebugScale();
3940219afc12 8150844: [hidpi] [macosx] -Dsun.java2d.uiScale should be taken into account for OS X
alexsch
parents: 30469
diff changeset
   252
            scale = (int) (debugScale >= 1
3940219afc12 8150844: [hidpi] [macosx] -Dsun.java2d.uiScale should be taken into account for OS X
alexsch
parents: 30469
diff changeset
   253
                    ? Math.round(debugScale)
3940219afc12 8150844: [hidpi] [macosx] -Dsun.java2d.uiScale should be taken into account for OS X
alexsch
parents: 30469
diff changeset
   254
                    : nativeGetScaleFactor(displayID));
3940219afc12 8150844: [hidpi] [macosx] -Dsun.java2d.uiScale should be taken into account for OS X
alexsch
parents: 30469
diff changeset
   255
        } else {
3940219afc12 8150844: [hidpi] [macosx] -Dsun.java2d.uiScale should be taken into account for OS X
alexsch
parents: 30469
diff changeset
   256
            scale = 1;
3940219afc12 8150844: [hidpi] [macosx] -Dsun.java2d.uiScale should be taken into account for OS X
alexsch
parents: 30469
diff changeset
   257
        }
3940219afc12 8150844: [hidpi] [macosx] -Dsun.java2d.uiScale should be taken into account for OS X
alexsch
parents: 30469
diff changeset
   258
    }
3940219afc12 8150844: [hidpi] [macosx] -Dsun.java2d.uiScale should be taken into account for OS X
alexsch
parents: 30469
diff changeset
   259
16840
64446d4710c4 8000629: [macosx] Blurry rendering with Java 7 on Retina display
serb
parents: 15989
diff changeset
   260
    private static native double nativeGetScaleFactor(int displayID);
64446d4710c4 8000629: [macosx] Blurry rendering with Java 7 on Retina display
serb
parents: 15989
diff changeset
   261
15989
0fe0985a7bde 8003169: [macosx] JVM crash after disconnecting from projector
serb
parents: 15988
diff changeset
   262
    private static native void nativeSetDisplayMode(int displayID, int w, int h, int bpp, int refrate);
0fe0985a7bde 8003169: [macosx] JVM crash after disconnecting from projector
serb
parents: 15988
diff changeset
   263
0fe0985a7bde 8003169: [macosx] JVM crash after disconnecting from projector
serb
parents: 15988
diff changeset
   264
    private static native DisplayMode nativeGetDisplayMode(int displayID);
0fe0985a7bde 8003169: [macosx] JVM crash after disconnecting from projector
serb
parents: 15988
diff changeset
   265
0fe0985a7bde 8003169: [macosx] JVM crash after disconnecting from projector
serb
parents: 15988
diff changeset
   266
    private static native DisplayMode[] nativeGetDisplayModes(int displayID);
12836
66cabfe1972f 7124247: [macosx] Implement GraphicsDevice.setDisplayMode()
kizune
parents: 12636
diff changeset
   267
15989
0fe0985a7bde 8003169: [macosx] JVM crash after disconnecting from projector
serb
parents: 15988
diff changeset
   268
    private static native double nativeGetXResolution(int displayID);
12836
66cabfe1972f 7124247: [macosx] Implement GraphicsDevice.setDisplayMode()
kizune
parents: 12636
diff changeset
   269
15989
0fe0985a7bde 8003169: [macosx] JVM crash after disconnecting from projector
serb
parents: 15988
diff changeset
   270
    private static native double nativeGetYResolution(int displayID);
0fe0985a7bde 8003169: [macosx] JVM crash after disconnecting from projector
serb
parents: 15988
diff changeset
   271
0fe0985a7bde 8003169: [macosx] JVM crash after disconnecting from projector
serb
parents: 15988
diff changeset
   272
    private static native Insets nativeGetScreenInsets(int displayID);
52537
814c49afb1a7 8211992: GraphicsConfiguration.getDevice().getDisplayMode() causes JVM crash on Mac
serb
parents: 47216
diff changeset
   273
814c49afb1a7 8211992: GraphicsConfiguration.getDevice().getDisplayMode() causes JVM crash on Mac
serb
parents: 47216
diff changeset
   274
    private static native Rectangle2D nativeGetBounds(int displayID);
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents:
diff changeset
   275
}