OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 22 matching lines...) Expand all Loading... |
33 | 33 |
34 #include "core/css/CSSImageValue.h" | 34 #include "core/css/CSSImageValue.h" |
35 #include "core/rendering/style/StyleGeneratedImage.h" | 35 #include "core/rendering/style/StyleGeneratedImage.h" |
36 #include "wtf/MathExtras.h" | 36 #include "wtf/MathExtras.h" |
37 | 37 |
38 namespace WebCore { | 38 namespace WebCore { |
39 | 39 |
40 // FIXME: Once cross-fade works on generated image types, remove this method. | 40 // FIXME: Once cross-fade works on generated image types, remove this method. |
41 bool AnimatableImage::usesDefaultInterpolationWith(const AnimatableValue* value)
const | 41 bool AnimatableImage::usesDefaultInterpolationWith(const AnimatableValue* value)
const |
42 { | 42 { |
43 if (!m_value->isImageValue()) | 43 RefPtrWillBeRawPtr<CSSValue> fromValue = toCSSValue(); |
| 44 if (fromValue->isImageGeneratorValue()) |
44 return true; | 45 return true; |
45 if (!toAnimatableImage(value)->toCSSValue()->isImageValue()) | 46 if (!fromValue->isImageValue() && !m_image->isImageResource()) |
| 47 return true; |
| 48 const AnimatableImage* image = toAnimatableImage(value); |
| 49 RefPtrWillBeRawPtr<CSSValue> toValue = image->toCSSValue(); |
| 50 if (toValue->isImageGeneratorValue()) |
| 51 return true; |
| 52 if (!toValue->isImageValue() && !image->m_image->isImageResource()) |
46 return true; | 53 return true; |
47 return false; | 54 return false; |
48 } | 55 } |
49 | 56 |
50 PassRefPtr<AnimatableValue> AnimatableImage::interpolateTo(const AnimatableValue
* value, double fraction) const | 57 PassRefPtr<AnimatableValue> AnimatableImage::interpolateTo(const AnimatableValue
* value, double fraction) const |
51 { | 58 { |
52 if (fraction <= 0 || fraction >= 1 || usesDefaultInterpolationWith(value)) | 59 if (fraction <= 0 || fraction >= 1) |
53 return defaultInterpolateTo(this, value, fraction); | 60 return defaultInterpolateTo(this, value, fraction); |
54 | 61 RefPtrWillBeRawPtr<CSSValue> fromValue = toCSSValue(); |
55 CSSValue* fromValue = toCSSValue(); | 62 // FIXME: Once cross-fade works on generated image types, remove this check. |
56 CSSValue* toValue = toAnimatableImage(value)->toCSSValue(); | 63 if (fromValue->isImageGeneratorValue()) |
57 | 64 return defaultInterpolateTo(this, value, fraction); |
| 65 if (!fromValue->isImageValue() && !fromValue->isImageGeneratorValue()) { |
| 66 if (!m_image->isImageResource()) |
| 67 return defaultInterpolateTo(this, value, fraction); |
| 68 ImageResource* resource = static_cast<ImageResource*>(m_image->data()); |
| 69 fromValue = CSSImageValue::create(resource->url(), m_image.get()); |
| 70 } |
| 71 const AnimatableImage* image = toAnimatableImage(value); |
| 72 RefPtrWillBeRawPtr<CSSValue> toValue = image->toCSSValue(); |
| 73 // FIXME: Once cross-fade works on generated image types, remove this check. |
| 74 if (toValue->isImageGeneratorValue()) |
| 75 return defaultInterpolateTo(this, value, fraction); |
| 76 if (!toValue->isImageValue() && !toValue->isImageGeneratorValue()) { |
| 77 if (!image->m_image->isImageResource()) |
| 78 return defaultInterpolateTo(this, value, fraction); |
| 79 ImageResource* resource = static_cast<ImageResource*>(image->m_image->da
ta()); |
| 80 toValue = CSSImageValue::create(resource->url(), image->m_image.get()); |
| 81 } |
58 RefPtrWillBeRawPtr<CSSCrossfadeValue> crossfadeValue = CSSCrossfadeValue::cr
eate(fromValue, toValue); | 82 RefPtrWillBeRawPtr<CSSCrossfadeValue> crossfadeValue = CSSCrossfadeValue::cr
eate(fromValue, toValue); |
59 crossfadeValue->setPercentage(CSSPrimitiveValue::create(fraction, CSSPrimiti
veValue::CSS_NUMBER)); | 83 crossfadeValue->setPercentage(CSSPrimitiveValue::create(fraction, CSSPrimiti
veValue::CSS_NUMBER)); |
60 return create(crossfadeValue); | 84 return create(StyleGeneratedImage::create(crossfadeValue.get()).get()); |
61 } | 85 } |
62 | 86 |
63 PassRefPtr<AnimatableValue> AnimatableImage::addWith(const AnimatableValue* valu
e) const | 87 PassRefPtr<AnimatableValue> AnimatableImage::addWith(const AnimatableValue* valu
e) const |
64 { | 88 { |
65 // FIXME: Correct procedure is defined here: http://dev.w3.org/fxtf/web-anim
ations/#the--image--type | 89 // FIXME: Correct procedure is defined here: http://dev.w3.org/fxtf/web-anim
ations/#the--image--type |
66 return defaultAddWith(this, value); | 90 return defaultAddWith(this, value); |
67 } | 91 } |
68 | 92 |
69 bool AnimatableImage::equalTo(const AnimatableValue* value) const | 93 bool AnimatableImage::equalTo(const AnimatableValue* value) const |
70 { | 94 { |
71 return m_value->equals(*toAnimatableImage(value)->m_value.get()); | 95 return StyleImage::imagesEquivalent(m_image.get(), toAnimatableImage(value)-
>m_image.get()); |
72 } | 96 } |
73 | 97 |
74 } | 98 } |
OLD | NEW |