| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 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 | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * | 7 * |
| 8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. 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 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 21 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 24 */ | 24 */ |
| 25 | 25 |
| 26 #ifndef WebFilterOperations_h | 26 #ifndef WebFilterOperations_h |
| 27 #define WebFilterOperations_h | 27 #define WebFilterOperations_h |
| 28 | 28 |
| 29 #include "SkImageFilter.h" | 29 #include "SkImageFilter.h" |
| 30 #include "SkScalar.h" | 30 #include "SkScalar.h" |
| 31 #include "WebColor.h" | 31 #include "cc/output/filter_operations.h" |
| 32 #include "WebPoint.h" | 32 #include "platform/PlatformExport.h" |
| 33 #include "public/platform/WebColor.h" |
| 34 #include "public/platform/WebPoint.h" |
| 33 | 35 |
| 34 namespace blink { | 36 namespace blink { |
| 35 | 37 |
| 36 // An ordered list of filter operations. | 38 // An ordered list of filter operations. |
| 37 class WebFilterOperations { | 39 class PLATFORM_EXPORT WebFilterOperations { |
| 38 public: | 40 public: |
| 39 virtual ~WebFilterOperations() { } | 41 WebFilterOperations(); |
| 42 virtual ~WebFilterOperations(); |
| 40 | 43 |
| 41 virtual void appendGrayscaleFilter(float amount) = 0; | 44 const cc::FilterOperations& AsFilterOperations() const; |
| 42 virtual void appendSepiaFilter(float amount) = 0; | 45 |
| 43 virtual void appendSaturateFilter(float amount) = 0; | 46 virtual void appendGrayscaleFilter(float amount); |
| 44 virtual void appendHueRotateFilter(float amount) = 0; | 47 virtual void appendSepiaFilter(float amount); |
| 45 virtual void appendInvertFilter(float amount) = 0; | 48 virtual void appendSaturateFilter(float amount); |
| 46 virtual void appendBrightnessFilter(float amount) = 0; | 49 virtual void appendHueRotateFilter(float amount); |
| 47 virtual void appendContrastFilter(float amount) = 0; | 50 virtual void appendInvertFilter(float amount); |
| 48 virtual void appendOpacityFilter(float amount)= 0; | 51 virtual void appendBrightnessFilter(float amount); |
| 49 virtual void appendBlurFilter(float amount) = 0; | 52 virtual void appendContrastFilter(float amount); |
| 50 virtual void appendDropShadowFilter(WebPoint offset, float stdDeviation, Web
Color) = 0; | 53 virtual void appendOpacityFilter(float amount); |
| 51 virtual void appendColorMatrixFilter(SkScalar matrix[20]) = 0; | 54 virtual void appendBlurFilter(float amount); |
| 52 virtual void appendZoomFilter(float amount, int inset) = 0; | 55 virtual void appendDropShadowFilter(WebPoint offset, float stdDeviation, Web
Color); |
| 53 virtual void appendSaturatingBrightnessFilter(float amount) = 0; | 56 virtual void appendColorMatrixFilter(SkScalar matrix[20]); |
| 57 virtual void appendZoomFilter(float amount, int inset); |
| 58 virtual void appendSaturatingBrightnessFilter(float amount); |
| 54 | 59 |
| 55 // This grabs a ref on the passed-in filter. | 60 // This grabs a ref on the passed-in filter. |
| 56 virtual void appendReferenceFilter(SkImageFilter*) = 0; | 61 virtual void appendReferenceFilter(SkImageFilter*); |
| 57 | 62 |
| 58 virtual void clear() = 0; | 63 virtual void clear(); |
| 59 virtual bool isEmpty() const = 0; | 64 virtual bool isEmpty() const; |
| 65 |
| 66 private: |
| 67 cc::FilterOperations m_filterOperations; |
| 60 }; | 68 }; |
| 61 | 69 |
| 62 } // namespace blink | 70 } // namespace blink |
| 63 | 71 |
| 64 #endif // WebFilterOperations_h | 72 #endif // WebFilterOperations_h |
| OLD | NEW |