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

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

Issue 148883011: Make SkImageFilter methods const. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: More fixes to gm/ Created 6 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
« no previous file with comments | « include/effects/SkPictureImageFilter.h ('k') | include/effects/SkResizeImageFilter.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 2013 Google Inc. 2 * Copyright 2013 Google Inc.
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 SkRectShaderImageFilter_DEFINED 8 #ifndef SkRectShaderImageFilter_DEFINED
9 #define SkRectShaderImageFilter_DEFINED 9 #define SkRectShaderImageFilter_DEFINED
10 10
(...skipping 20 matching lines...) Expand all
31 static SkRectShaderImageFilter* Create(SkShader* s, const CropRect* rect = N ULL); 31 static SkRectShaderImageFilter* Create(SkShader* s, const CropRect* rect = N ULL);
32 virtual ~SkRectShaderImageFilter(); 32 virtual ~SkRectShaderImageFilter();
33 33
34 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkRectShaderImageFilter) 34 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkRectShaderImageFilter)
35 35
36 protected: 36 protected:
37 SkRectShaderImageFilter(SkReadBuffer& buffer); 37 SkRectShaderImageFilter(SkReadBuffer& buffer);
38 virtual void flatten(SkWriteBuffer&) const SK_OVERRIDE; 38 virtual void flatten(SkWriteBuffer&) const SK_OVERRIDE;
39 39
40 virtual bool onFilterImage(Proxy*, const SkBitmap& src, const SkMatrix&, 40 virtual bool onFilterImage(Proxy*, const SkBitmap& src, const SkMatrix&,
41 SkBitmap* result, SkIPoint* loc) SK_OVERRIDE; 41 SkBitmap* result, SkIPoint* loc) const SK_OVERRID E;
42 42
43 private: 43 private:
44 SkRectShaderImageFilter(SkShader* s, const CropRect* rect); 44 SkRectShaderImageFilter(SkShader* s, const CropRect* rect);
45 SkShader* fShader; 45 SkShader* fShader;
46 46
47 typedef SkImageFilter INHERITED; 47 typedef SkImageFilter INHERITED;
48 }; 48 };
49 49
50 #endif 50 #endif
OLDNEW
« no previous file with comments | « include/effects/SkPictureImageFilter.h ('k') | include/effects/SkResizeImageFilter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698