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

Side by Side Diff: src/effects/gradients/SkSweepGradient.h

Issue 318923005: SkShader::asNewEffect Refactoring (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: added macros to check for gpu support Created 6 years, 6 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 | « src/effects/gradients/SkRadialGradient.cpp ('k') | src/effects/gradients/SkSweepGradient.cpp » ('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 /* 2 /*
3 * Copyright 2012 Google Inc. 3 * Copyright 2012 Google Inc.
4 * 4 *
5 * Use of this source code is governed by a BSD-style license that can be 5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file. 6 * found in the LICENSE file.
7 */ 7 */
8 8
9 #ifndef SkSweepGradient_DEFINED 9 #ifndef SkSweepGradient_DEFINED
10 #define SkSweepGradient_DEFINED 10 #define SkSweepGradient_DEFINED
(...skipping 17 matching lines...) Expand all
28 private: 28 private:
29 typedef SkGradientShaderBase::GradientShaderBaseContext INHERITED; 29 typedef SkGradientShaderBase::GradientShaderBaseContext INHERITED;
30 }; 30 };
31 31
32 virtual BitmapType asABitmap(SkBitmap* bitmap, 32 virtual BitmapType asABitmap(SkBitmap* bitmap,
33 SkMatrix* matrix, 33 SkMatrix* matrix,
34 TileMode* xy) const SK_OVERRIDE; 34 TileMode* xy) const SK_OVERRIDE;
35 35
36 virtual GradientType asAGradient(GradientInfo* info) const SK_OVERRIDE; 36 virtual GradientType asAGradient(GradientInfo* info) const SK_OVERRIDE;
37 37
38 virtual GrEffectRef* asNewEffect(GrContext*, const SkPaint&, const SkMatrix* ) const SK_OVERRIDE; 38 virtual bool asNewEffect(GrContext*, const SkPaint&, const SkMatrix*, GrColo r*, GrEffectRef**)
39 const SK_OVERRIDE;
39 40
40 SK_TO_STRING_OVERRIDE() 41 SK_TO_STRING_OVERRIDE()
41 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkSweepGradient) 42 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkSweepGradient)
42 43
43 protected: 44 protected:
44 SkSweepGradient(SkReadBuffer& buffer); 45 SkSweepGradient(SkReadBuffer& buffer);
45 virtual void flatten(SkWriteBuffer& buffer) const SK_OVERRIDE; 46 virtual void flatten(SkWriteBuffer& buffer) const SK_OVERRIDE;
46 virtual Context* onCreateContext(const ContextRec&, void* storage) const SK_ OVERRIDE; 47 virtual Context* onCreateContext(const ContextRec&, void* storage) const SK_ OVERRIDE;
47 48
48 private: 49 private:
49 const SkPoint fCenter; 50 const SkPoint fCenter;
50 51
51 typedef SkGradientShaderBase INHERITED; 52 typedef SkGradientShaderBase INHERITED;
52 }; 53 };
53 54
54 #endif 55 #endif
OLDNEW
« no previous file with comments | « src/effects/gradients/SkRadialGradient.cpp ('k') | src/effects/gradients/SkSweepGradient.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698