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

Side by Side Diff: include/effects/SkComposeImageFilter.h

Issue 22438003: Move SkComposeImageFilter into its own {.h, .cpp} files (Closed) Base URL: http://skia.googlecode.com/svn/trunk
Patch Set: Fix nit Created 7 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « gyp/effects.gypi ('k') | include/effects/SkTestImageFilters.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 /*
2 * Copyright 2013 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8 #ifndef SkComposeImageFilter_DEFINED
9 #define SkComposeImageFilter_DEFINED
10
11 #include "SkImageFilter.h"
12
13 class SK_API SkComposeImageFilter : public SkImageFilter {
14 public:
15 SkComposeImageFilter(SkImageFilter* outer, SkImageFilter* inner) : INHERITED (outer, inner) {}
16 virtual ~SkComposeImageFilter();
17
18 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkComposeImageFilter)
19
20 protected:
21 explicit SkComposeImageFilter(SkFlattenableReadBuffer& buffer);
22
23 virtual bool onFilterImage(Proxy*, const SkBitmap& src, const SkMatrix&,
24 SkBitmap* result, SkIPoint* loc) SK_OVERRIDE;
25 virtual bool onFilterBounds(const SkIRect&, const SkMatrix&, SkIRect*) SK_OV ERRIDE;
26
27 private:
28 typedef SkImageFilter INHERITED;
29 };
30
31 #endif
OLDNEW
« no previous file with comments | « gyp/effects.gypi ('k') | include/effects/SkTestImageFilters.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698