Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1973)

Side by Side Diff: third_party/WebKit/Source/platform/graphics/CompositorFilterOperations.h

Issue 1616653002: CC Animation: Move files from cc_blink to Source/platform/animation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add WTF_MAKE_NONCOPYABLE. Remove INSIDE_BLINK for keyframes. Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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"
jbroman 2016/02/01 15:44:36 use full include paths to Skia, like "third_party/
loyso (OOO) 2016/02/04 05:49:29 Done.
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 "platform/geometry/IntPoint.h"
34 #include "platform/graphics/Color.h"
35 #include "wtf/Noncopyable.h"
33 36
34 namespace blink { 37 namespace blink {
35 38
36 // An ordered list of filter operations. 39 // An ordered list of filter operations.
37 class WebFilterOperations { 40 class PLATFORM_EXPORT CompositorFilterOperations {
41 WTF_MAKE_NONCOPYABLE(CompositorFilterOperations);
38 public: 42 public:
39 virtual ~WebFilterOperations() { } 43 CompositorFilterOperations();
44 virtual ~CompositorFilterOperations();
40 45
41 virtual void appendGrayscaleFilter(float amount) = 0; 46 const cc::FilterOperations& asFilterOperations() const;
42 virtual void appendSepiaFilter(float amount) = 0; 47
43 virtual void appendSaturateFilter(float amount) = 0; 48 virtual void appendGrayscaleFilter(float amount);
44 virtual void appendHueRotateFilter(float amount) = 0; 49 virtual void appendSepiaFilter(float amount);
45 virtual void appendInvertFilter(float amount) = 0; 50 virtual void appendSaturateFilter(float amount);
46 virtual void appendBrightnessFilter(float amount) = 0; 51 virtual void appendHueRotateFilter(float amount);
47 virtual void appendContrastFilter(float amount) = 0; 52 virtual void appendInvertFilter(float amount);
48 virtual void appendOpacityFilter(float amount)= 0; 53 virtual void appendBrightnessFilter(float amount);
49 virtual void appendBlurFilter(float amount) = 0; 54 virtual void appendContrastFilter(float amount);
50 virtual void appendDropShadowFilter(WebPoint offset, float stdDeviation, Web Color) = 0; 55 virtual void appendOpacityFilter(float amount);
51 virtual void appendColorMatrixFilter(SkScalar matrix[20]) = 0; 56 virtual void appendBlurFilter(float amount);
52 virtual void appendZoomFilter(float amount, int inset) = 0; 57 virtual void appendDropShadowFilter(IntPoint offset, float stdDeviation, Col or);
53 virtual void appendSaturatingBrightnessFilter(float amount) = 0; 58 virtual void appendColorMatrixFilter(SkScalar matrix[20]);
59 virtual void appendZoomFilter(float amount, int inset);
60 virtual void appendSaturatingBrightnessFilter(float amount);
54 61
55 // This grabs a ref on the passed-in filter. 62 // This grabs a ref on the passed-in filter.
56 virtual void appendReferenceFilter(SkImageFilter*) = 0; 63 virtual void appendReferenceFilter(SkImageFilter*);
57 64
58 virtual void clear() = 0; 65 virtual void clear();
59 virtual bool isEmpty() const = 0; 66 virtual bool isEmpty() const;
67
68 private:
69 cc::FilterOperations m_filterOperations;
60 }; 70 };
61 71
62 } // namespace blink 72 } // namespace blink
63 73
64 #endif // WebFilterOperations_h 74 #endif // CompositorFilterOperations_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698