Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-6749060

LCD AA text rendered incorrectly when destination is non opaque (sw pipeline only)

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: P3 P3
    • 7
    • 6u10
    • client-libs
    • None
    • 2d
    • b43
    • generic
    • generic

        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.

              tdv Dmitri Trembovetski (Inactive)
              tdv Dmitri Trembovetski (Inactive)
              Votes:
              0 Vote for this issue
              Watchers:
              0 Start watching this issue

                Created:
                Updated:
                Resolved:
                Imported:
                Indexed: