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

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

Issue 1225923010: Refugee from Dead Machine 4: MDB Monster Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Last update from dead machine Created 4 years, 7 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 26
27 private: 27 private:
28 typedef SkGradientShaderBase::GradientShaderBaseContext INHERITED; 28 typedef SkGradientShaderBase::GradientShaderBaseContext INHERITED;
29 }; 29 };
30 30
31 GradientType asAGradient(GradientInfo* info) const override; 31 GradientType asAGradient(GradientInfo* info) const override;
32 #if SK_SUPPORT_GPU 32 #if SK_SUPPORT_GPU
33 const GrFragmentProcessor* asFragmentProcessor(GrContext*, 33 const GrFragmentProcessor* asFragmentProcessor(GrContext*,
34 const SkMatrix& viewM, 34 const SkMatrix& viewM,
35 const SkMatrix*, 35 const SkMatrix*,
36 SkFilterQuality) const overri de; 36 SkFilterQuality,
37 GrRenderTarget* dst) const ov erride;
37 #endif 38 #endif
38 39
39 SK_TO_STRING_OVERRIDE() 40 SK_TO_STRING_OVERRIDE()
40 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkRadialGradient) 41 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkRadialGradient)
41 42
42 protected: 43 protected:
43 SkRadialGradient(SkReadBuffer& buffer); 44 SkRadialGradient(SkReadBuffer& buffer);
44 void flatten(SkWriteBuffer& buffer) const override; 45 void flatten(SkWriteBuffer& buffer) const override;
45 Context* onCreateContext(const ContextRec&, void* storage) const override; 46 Context* onCreateContext(const ContextRec&, void* storage) const override;
46 47
47 private: 48 private:
48 const SkPoint fCenter; 49 const SkPoint fCenter;
49 const SkScalar fRadius; 50 const SkScalar fRadius;
50 51
51 friend class SkGradientShader; 52 friend class SkGradientShader;
52 typedef SkGradientShaderBase INHERITED; 53 typedef SkGradientShaderBase INHERITED;
53 }; 54 };
54 55
55 #endif 56 #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