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

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

Issue 377503004: Make GrDrawState and GrPaint take GrEffect* instead of GrEffectRef*. (Closed) Base URL: https://skia.googlesource.com/skia.git@no_ref
Patch Set: Update YUV effect to reflect these changes. Created 6 years, 5 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 bool asNewEffect(GrContext*, const SkPaint&, const SkMatrix*, GrColo r*, GrEffectRef**) 38 virtual bool asNewEffect(GrContext*, const SkPaint&, const SkMatrix*, GrColo r*, GrEffect**)
39 const SK_OVERRIDE; 39 const SK_OVERRIDE;
40 40
41 SK_TO_STRING_OVERRIDE() 41 SK_TO_STRING_OVERRIDE()
42 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkSweepGradient) 42 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkSweepGradient)
43 43
44 protected: 44 protected:
45 SkSweepGradient(SkReadBuffer& buffer); 45 SkSweepGradient(SkReadBuffer& buffer);
46 virtual void flatten(SkWriteBuffer& buffer) const SK_OVERRIDE; 46 virtual void flatten(SkWriteBuffer& buffer) const SK_OVERRIDE;
47 virtual Context* onCreateContext(const ContextRec&, void* storage) const SK_ OVERRIDE; 47 virtual Context* onCreateContext(const ContextRec&, void* storage) const SK_ OVERRIDE;
48 48
49 private: 49 private:
50 const SkPoint fCenter; 50 const SkPoint fCenter;
51 51
52 typedef SkGradientShaderBase INHERITED; 52 typedef SkGradientShaderBase INHERITED;
53 }; 53 };
54 54
55 #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