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

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

Issue 25430005: Fix for potential typedef issue Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Created 7 years, 2 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 | « include/effects/SkBlurDrawLooper.h ('k') | include/effects/SkColorFilterImageFilter.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2011 The Android Open Source Project 2 * Copyright 2011 The Android Open Source Project
3 * 3 *
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 7
8 #ifndef SkBlurImageFilter_DEFINED 8 #ifndef SkBlurImageFilter_DEFINED
9 #define SkBlurImageFilter_DEFINED 9 #define SkBlurImageFilter_DEFINED
10 10
11 #include "SkImageFilter.h" 11 #include "SkImageFilter.h"
12 #include "SkSize.h" 12 #include "SkSize.h"
13 13
14 class SK_API SkBlurImageFilter : public SkImageFilter { 14 class SK_API SkBlurImageFilter : public SkImageFilter {
15 typedef SkImageFilter INHERITED;
16
15 public: 17 public:
16 SkBlurImageFilter(SkScalar sigmaX, 18 SkBlurImageFilter(SkScalar sigmaX,
17 SkScalar sigmaY, 19 SkScalar sigmaY,
18 SkImageFilter* input = NULL, 20 SkImageFilter* input = NULL,
19 const SkIRect* cropRect = NULL); 21 const SkIRect* cropRect = NULL);
20 22
21 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkBlurImageFilter) 23 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkBlurImageFilter)
22 24
23 protected: 25 protected:
24 explicit SkBlurImageFilter(SkFlattenableReadBuffer& buffer); 26 explicit SkBlurImageFilter(SkFlattenableReadBuffer& buffer);
25 virtual void flatten(SkFlattenableWriteBuffer&) const SK_OVERRIDE; 27 virtual void flatten(SkFlattenableWriteBuffer&) const SK_OVERRIDE;
26 28
27 virtual bool onFilterImage(Proxy*, const SkBitmap& src, const SkMatrix&, 29 virtual bool onFilterImage(Proxy*, const SkBitmap& src, const SkMatrix&,
28 SkBitmap* result, SkIPoint* offset) SK_OVERRIDE; 30 SkBitmap* result, SkIPoint* offset) SK_OVERRIDE;
29 31
30 bool canFilterImageGPU() const SK_OVERRIDE { return true; } 32 bool canFilterImageGPU() const SK_OVERRIDE { return true; }
31 virtual bool filterImageGPU(Proxy* proxy, const SkBitmap& src, const SkMatri x& ctm, 33 virtual bool filterImageGPU(Proxy* proxy, const SkBitmap& src, const SkMatri x& ctm,
32 SkBitmap* result, SkIPoint* offset) SK_OVERRIDE; 34 SkBitmap* result, SkIPoint* offset) SK_OVERRIDE;
33 35
34 private: 36 private:
35 SkSize fSigma; 37 SkSize fSigma;
36 typedef SkImageFilter INHERITED;
37 }; 38 };
38 39
39 #endif 40 #endif
OLDNEW
« no previous file with comments | « include/effects/SkBlurDrawLooper.h ('k') | include/effects/SkColorFilterImageFilter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698