-
Bug
-
Resolution: Fixed
-
P3
-
6u10
-
None
-
b43
-
generic
-
generic
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2168583 | 6u12 | Dmitri Trembovetski | P3 | Resolved | Fixed | b01 |
Run this test on 6u10 on javafx1.0 runtime with Direct3D pipeline disabled
(if on windows), you'll see artifacts on the edges of the text rendered with
the effect:
import javafx.application.*;
import javafx.scene.paint.*;
import javafx.scene.*;
import javafx.scene.text.*;
import javafx.scene.effect.*;
Frame {
title: "MyApplication"
width: 600
height: 200
closeAction: function() {
java.lang.System.exit( 0 );
}
visible: true
scene: Scene {
fill: Color.LIGHTBLUE
content: [
Text {
effect: DropShadow{offsetX:3 offsetY:3 radius: 18 color:Color.WHITE}
font: Font.font("Arial",FontWeight.BOLD,40.0)
fill: Color.web("xF2F2F2")
x: 20, y: 70
content: "Text with the DropShadow"
fill: Color.WHITE
},
Text {
font: Font.font("Arial",FontWeight.BOLD,40.0)
fill: Color.web("xF2F2F2")
x: 20, y: 130
content: "Text without the effect"
fill: Color.WHITE
}
]
}
}
The issue is very similar to one described in 6728834, but this one is SW
pipeline only.
(if on windows), you'll see artifacts on the edges of the text rendered with
the effect:
import javafx.application.*;
import javafx.scene.paint.*;
import javafx.scene.*;
import javafx.scene.text.*;
import javafx.scene.effect.*;
Frame {
title: "MyApplication"
width: 600
height: 200
closeAction: function() {
java.lang.System.exit( 0 );
}
visible: true
scene: Scene {
fill: Color.LIGHTBLUE
content: [
Text {
effect: DropShadow{offsetX:3 offsetY:3 radius: 18 color:Color.WHITE}
font: Font.font("Arial",FontWeight.BOLD,40.0)
fill: Color.web("xF2F2F2")
x: 20, y: 70
content: "Text with the DropShadow"
fill: Color.WHITE
},
Text {
font: Font.font("Arial",FontWeight.BOLD,40.0)
fill: Color.web("xF2F2F2")
x: 20, y: 130
content: "Text without the effect"
fill: Color.WHITE
}
]
}
}
The issue is very similar to one described in 6728834, but this one is SW
pipeline only.
- backported by
-
JDK-2168583 LCD AA text rendered incorrectly when destination is non opaque (sw pipeline only)
-
- Resolved
-
- relates to
-
JDK-6728834 D3D/OGL: LCD AA text becomes bold and blurred when rendering to a non-opaque destination
-
- Closed
-
-
JDK-6749069 LCD text loops should support non-opaque destination (and possibly other compositing modes)
-
- Closed
-