File tree 1 file changed +8
-4
lines changed
1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -132,10 +132,6 @@ impl GradientBuilder {
132
132
let first = * stops. first ( ) . unwrap ( ) ;
133
133
let last = * stops. last ( ) . unwrap ( ) ;
134
134
135
- // Express the assertion so that if one of the offsets is NaN, we don't panic
136
- // and instead take the branch that handles degenerate gradients.
137
- assert ! ( !( first. offset > last. offset) ) ;
138
-
139
135
let stops_delta = last. offset - first. offset ;
140
136
141
137
if stops_delta > 0.000001 {
@@ -144,6 +140,14 @@ impl GradientBuilder {
144
140
}
145
141
146
142
( first. offset , last. offset )
143
+ } else if stops_delta. is_nan ( ) {
144
+ // We have no good way to render a NaN offset, but make something
145
+ // that is at least renderable.
146
+ stops. clear ( ) ;
147
+ stops. push ( di:: GradientStop { color : last. color , offset : 0.0 , } ) ;
148
+ stops. push ( di:: GradientStop { color : last. color , offset : 1.0 , } ) ;
149
+
150
+ ( 0.0 , 1.0 )
147
151
} else {
148
152
// We have a degenerate gradient and can't accurately transform the stops
149
153
// what happens here depends on the repeat behavior, but in any case
You can’t perform that action at this time.
0 commit comments