提交 3ef44e30 编写于 作者: P prr

8027541: ully transparent jframe becomes black.

Reviewed-by: bae, ceisserer
上级 3027cfa4
...@@ -245,7 +245,17 @@ public abstract class XRSurfaceData extends XSurfaceData { ...@@ -245,7 +245,17 @@ public abstract class XRSurfaceData extends XSurfaceData {
ColorModel cm, Image image, ColorModel cm, Image image,
long drawable, long drawable,
int transparency) { int transparency) {
int depth = transparency > Transparency.OPAQUE ? 32 : 24; int depth;
// If we have a 32 bit color model for the window it needs
// alpha to support translucency of the window so we need
// to upgrade what was requested for the surface.
if (gc.getColorModel().getPixelSize() == 32) {
depth = 32;
transparency = Transparency.TRANSLUCENT;
} else {
depth = transparency > Transparency.OPAQUE ? 32 : 24;
}
if (depth == 24) { if (depth == 24) {
cm = new DirectColorModel(depth, cm = new DirectColorModel(depth,
0x00FF0000, 0x0000FF00, 0x000000FF); 0x00FF0000, 0x0000FF00, 0x000000FF);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册