Chromium Code Reviews| 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 |
| 11 * notice, this list of conditions and the following disclaimer in the | 11 * notice, this list of conditions and the following disclaimer in the |
| 12 * documentation and/or other materials provided with the distribution. | 12 * documentation and/or other materials provided with the distribution. |
| 13 * | 13 * |
| 14 * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY | 14 * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY |
| 15 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | 15 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 16 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | 16 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 17 * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY | 17 * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY |
| 18 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | 18 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 19 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | 19 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 20 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | 20 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND |
| 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 CompositorFilterOperations_h |
| 27 #define WebFilterOperations_h | 27 #define CompositorFilterOperations_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 CompositorFilterOperations { |
|
jbroman
2016/01/29 15:29:18
Is this virtual purely for the mock used in tests?
loyso (OOO)
2016/02/01 05:31:32
Yup.
| |
| 38 public: | 40 public: |
| 39 virtual ~WebFilterOperations() { } | 41 CompositorFilterOperations(); |
| 42 virtual ~CompositorFilterOperations(); | |
| 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); |
|
jbroman
2016/01/29 15:29:18
IntPoint, Color
loyso (OOO)
2016/02/01 05:31:32
Done.
| |
| 53 virtual void appendSaturatingBrightnessFilter(float amount) = 0; | 56 virtual void appendColorMatrixFilter(SkScalar matrix[20]); |
|
jbroman
2016/01/29 15:29:18
Is this called anywhere? I was wondering what we s
loyso (OOO)
2016/02/01 05:31:32
Maybe we wanted it to be implemented as accelerate
jbroman
2016/02/01 15:44:36
OK to leave it for now (since this is mostly a cod
| |
| 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 // CompositorFilterOperations_h |
| OLD | NEW |