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

Side by Side Diff: src/effects/gradients/SkRadialGradient.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/SkLinearGradient.cpp ('k') | src/effects/gradients/SkRadialGradient.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 SkRadialGradient_DEFINED 9 #ifndef SkRadialGradient_DEFINED
10 #define SkRadialGradient_DEFINED 10 #define SkRadialGradient_DEFINED
(...skipping 15 matching lines...) Expand all
26 virtual void shadeSpan16(int x, int y, uint16_t dstC[], int count) SK_OV ERRIDE; 26 virtual void shadeSpan16(int x, int y, uint16_t dstC[], int count) SK_OV ERRIDE;
27 27
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 virtual GradientType asAGradient(GradientInfo* info) const SK_OVERRIDE; 35 virtual GradientType asAGradient(GradientInfo* info) const SK_OVERRIDE;
36 virtual bool asNewEffect(GrContext*, const SkPaint&, const SkMatrix*, GrColo r*, GrEffectRef**) const SK_OVERRIDE; 36 virtual bool asNewEffect(GrContext*, const SkPaint&, const SkMatrix*, GrColo r*, GrEffect**) const SK_OVERRIDE;
37 37
38 SK_TO_STRING_OVERRIDE() 38 SK_TO_STRING_OVERRIDE()
39 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkRadialGradient) 39 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkRadialGradient)
40 40
41 protected: 41 protected:
42 SkRadialGradient(SkReadBuffer& buffer); 42 SkRadialGradient(SkReadBuffer& buffer);
43 virtual void flatten(SkWriteBuffer& buffer) const SK_OVERRIDE; 43 virtual void flatten(SkWriteBuffer& buffer) const SK_OVERRIDE;
44 virtual Context* onCreateContext(const ContextRec&, void* storage) const SK_ OVERRIDE; 44 virtual Context* onCreateContext(const ContextRec&, void* storage) const SK_ OVERRIDE;
45 45
46 private: 46 private:
47 typedef SkGradientShaderBase INHERITED; 47 typedef SkGradientShaderBase INHERITED;
48 const SkPoint fCenter; 48 const SkPoint fCenter;
49 const SkScalar fRadius; 49 const SkScalar fRadius;
50 }; 50 };
51 51
52 #endif 52 #endif
OLDNEW
« no previous file with comments | « src/effects/gradients/SkLinearGradient.cpp ('k') | src/effects/gradients/SkRadialGradient.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698