-
Bug
-
Resolution: Fixed
-
P2
-
fx1.1
I first thought this was a driver issue w/ my video card (7600 GT, notorious for having problems w/ many things), but I also reproduced this on a Radeon X600. It worked okay on the X600 up until I updated my JDK to 6u12.
This is reproducible with JavaFX 1.1, as well as with marina/scrum/graphics #112.
----
import javafx.animation.Interpolator;
import javafx.animation.KeyFrame;
import javafx.animation.Timeline;
import javafx.scene.paint.Color;
import javafx.scene.paint.LinearGradient;
import javafx.scene.paint.Stop;
import javafx.scene.Scene;
import javafx.scene.shape.Rectangle;
import javafx.stage.Stage;
/**
* @author bchristi
*/
var rect: Rectangle = Rectangle {
width: 100
height: 100
fill: LinearGradient {
stops: [
Stop {
offset: 0.1,
color: Color.TOMATO
},
Stop {
offset: 0.5,
color: Color.ROYALBLUE
},
Stop {
offset: 0.9,
color: Color.MISTYROSE
}
]
}
}
var stage = Stage {
width: 640
height: 480
scene: Scene {
content: rect
}
}
var tl = Timeline {
repeatCount: 9999
autoReverse: true
keyFrames: [
KeyFrame {
time: 3s
values: [
rect.translateX => 100 tween Interpolator.EASEIN
]
},
KeyFrame {
time: 4s
values: [
rect.translateX => 540 tween Interpolator.EASEOUT
]
}
]
}
tl.playFromStart();
- blocks
-
JDK-8108865 Gradients, controls broken on 1.2.2 with Nvidia GeForce GTS 250
-
- Resolved
-
- duplicates
-
JDK-8107093 Most of the time Gradient struggles on Applet
-
- Closed
-
-
JDK-8107973 LinearGradient not working inside a VBox or HBox
-
- Closed
-
-
JDK-8107754 LinearGradient is incorrect when applied on a shape in a layout
-
- Closed
-
-
JDK-8108087 Linear gradient won't draw properly if put on a rect with y not at an integer
-
- Closed
-
-
JDK-8105442 LinearGradient is not applied to Strikethrough & underline of the text
-
- Closed
-
-
JDK-8108212 Graphical artefacts on applets and apps on WinXP
-
- Closed
-
-
JDK-8108549 incomplete screen update, corrupt rendering
-
- Closed
-
- relates to
-
JDK-8107093 Most of the time Gradient struggles on Applet
-
- Closed
-
-
JDK-8106910 REGRESSION : painting artifacts is seen when switching between LinearGradient & RadialGradient
-
- Closed
-
-
JDK-8107267 Linear Gradient in the background significantly decreases graphics performance
-
- Closed
-
-
JDK-8108087 Linear gradient won't draw properly if put on a rect with y not at an integer
-
- Closed
-