-
Bug
-
Resolution: Duplicate
-
P3
-
8
-
Intel HD 4000
-
linux_ubuntu
import java.awt.Color;
import java.awt.Frame;
import java.awt.Label;
import static java.awt.EventQueue.invokeAndWait;
public class AWT {
public static void main(String[] args) throws Exception {
invokeAndWait(() -> {
Frame frame = new Frame();
frame.add(new Label("TEST"));
frame.setUndecorated(true);
frame.setBackground(new Color(0f, 1f, 0f, 0.5f));
frame.setBounds(200, 200, 200, 200);
frame.setVisible(true);
});
}
}
The code above shows a label with the following cmd:
java -Dsun.java2d.xrender=false AWT
The code above does not show a label with the following cmd:
java -Dsun.java2d.xrender=true AWT
import java.awt.Frame;
import java.awt.Label;
import static java.awt.EventQueue.invokeAndWait;
public class AWT {
public static void main(String[] args) throws Exception {
invokeAndWait(() -> {
Frame frame = new Frame();
frame.add(new Label("TEST"));
frame.setUndecorated(true);
frame.setBackground(new Color(0f, 1f, 0f, 0.5f));
frame.setBounds(200, 200, 200, 200);
frame.setVisible(true);
});
}
}
The code above shows a label with the following cmd:
java -Dsun.java2d.xrender=false AWT
The code above does not show a label with the following cmd:
java -Dsun.java2d.xrender=true AWT
- blocks
-
JDK-8027639 JComboBox's popup leaves tracks after closing
- Open
- duplicates
-
JDK-8023483 sun/java2d/DirectX/TransformedPaintTest/TransformedPaintTest.java failed with jdk8 on linux platforms
- Resolved
-
JDK-7172456 XRender: xrender pipeline produce garbage on the window
- Closed
-
JDK-8039345 Strange behaviour of per-pixel translucency on linux
- Resolved
- relates to
-
JDK-8032644 GUI display issue
- Open