Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
8266520: Revert to OpenGL as the default 2D rendering pipeline for macOS
Reviewed-by: azvegint, trebari, kcr, prr
  • Loading branch information
aghaisas committed May 17, 2021
1 parent 3c010a7 commit 79b3944
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions src/java.desktop/macosx/classes/sun/java2d/MacOSFlags.java
Expand Up @@ -90,16 +90,13 @@ private static void initJavaFlags() {
PropertyState metalState = getBooleanProp("sun.java2d.metal", PropertyState.UNSPECIFIED);

// Handle invalid combinations to use the default rendering pipeline
// Current default rendering pipeline is Metal
// (The default can be changed to OpenGL in future just by toggling two states in this if condition block)
// ---------------------------------------------------------------------
// TODO : Revert default rendering pipeline to OpenGL
// ---------------------------------------------------------------------
// Current default rendering pipeline is OpenGL
// (The default can be changed to Metal in future just by toggling two states in this if condition block)
if ((oglState == PropertyState.UNSPECIFIED && metalState == PropertyState.UNSPECIFIED) ||
(oglState == PropertyState.DISABLED && metalState == PropertyState.DISABLED) ||
(oglState == PropertyState.ENABLED && metalState == PropertyState.ENABLED)) {
metalState = PropertyState.ENABLED; // Enable default pipeline
oglState = PropertyState.DISABLED; // Disable non-default pipeline
oglState = PropertyState.ENABLED; // Enable default pipeline
metalState = PropertyState.DISABLED; // Disable non-default pipeline
}

if (metalState == PropertyState.UNSPECIFIED) {
Expand Down

1 comment on commit 79b3944

@openjdk-notifier
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.