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

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

Issue 1313573005: Revert of Change SkShader;asFragmentProcessor signature to no longer take skpaint\grcolor* (Closed) Base URL: https://skia.googlesource.com/skia.git@things
Patch Set: Created 5 years, 3 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 11 matching lines...) Expand all
22 RadialGradientContext(const SkRadialGradient&, const ContextRec&); 22 RadialGradientContext(const SkRadialGradient&, const ContextRec&);
23 23
24 void shadeSpan(int x, int y, SkPMColor dstC[], int count) override; 24 void shadeSpan(int x, int y, SkPMColor dstC[], int count) override;
25 void shadeSpan16(int x, int y, uint16_t dstC[], int count) override; 25 void shadeSpan16(int x, int y, uint16_t dstC[], int count) override;
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 bool asFragmentProcessor(GrContext*, const SkPaint&, const SkMatrix& viewM,
33 const GrFragmentProcessor* asFragmentProcessor(GrContext*, const SkMatrix& v iewM, 33 const SkMatrix*, GrColor*, GrProcessorDataManager*,
34 const SkMatrix*, SkFilterQuality, GrProcessorDataManager*) const overrid e; 34 GrFragmentProcessor**) const override;
35 #endif
36 35
37 SK_TO_STRING_OVERRIDE() 36 SK_TO_STRING_OVERRIDE()
38 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkRadialGradient) 37 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkRadialGradient)
39 38
40 protected: 39 protected:
41 SkRadialGradient(SkReadBuffer& buffer); 40 SkRadialGradient(SkReadBuffer& buffer);
42 void flatten(SkWriteBuffer& buffer) const override; 41 void flatten(SkWriteBuffer& buffer) const override;
43 Context* onCreateContext(const ContextRec&, void* storage) const override; 42 Context* onCreateContext(const ContextRec&, void* storage) const override;
44 43
45 private: 44 private:
46 const SkPoint fCenter; 45 const SkPoint fCenter;
47 const SkScalar fRadius; 46 const SkScalar fRadius;
48 47
49 friend class SkGradientShader; 48 friend class SkGradientShader;
50 typedef SkGradientShaderBase INHERITED; 49 typedef SkGradientShaderBase INHERITED;
51 }; 50 };
52 51
53 #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