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

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

Issue 1316513002: Change SkShader;asFragmentProcessor signature to no longer take skpaint\grcolor* (Closed) Base URL: https://skia.googlesource.com/skia.git@things
Patch Set: Address comments, fix roll(?) 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/SkTableColorFilter.cpp ('k') | src/effects/gradients/SkLinearGradient.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 * Copyright 2012 Google Inc. 2 * Copyright 2012 Google Inc.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 7
8 #ifndef SkLinearGradient_DEFINED 8 #ifndef SkLinearGradient_DEFINED
9 #define SkLinearGradient_DEFINED 9 #define SkLinearGradient_DEFINED
10 10
(...skipping 11 matching lines...) Expand all
22 ~LinearGradientContext() {} 22 ~LinearGradientContext() {}
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 bool asFragmentProcessor(GrContext*, const SkPaint&, const SkMatrix& viewM, 32 #if SK_SUPPORT_GPU
33 const SkMatrix*, GrColor*, GrProcessorDataManager*, 33 const GrFragmentProcessor* asFragmentProcessor(GrContext*,
34 GrFragmentProcessor**) const override; 34 const SkMatrix& viewM,
35 const SkMatrix*,
36 SkFilterQuality,
37 GrProcessorDataManager*) cons t override;
38 #endif
35 39
36 SK_TO_STRING_OVERRIDE() 40 SK_TO_STRING_OVERRIDE()
37 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkLinearGradient) 41 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkLinearGradient)
38 42
39 protected: 43 protected:
40 SkLinearGradient(SkReadBuffer& buffer); 44 SkLinearGradient(SkReadBuffer& buffer);
41 void flatten(SkWriteBuffer& buffer) const override; 45 void flatten(SkWriteBuffer& buffer) const override;
42 Context* onCreateContext(const ContextRec&, void* storage) const override; 46 Context* onCreateContext(const ContextRec&, void* storage) const override;
43 47
44 private: 48 private:
45 friend class SkGradientShader; 49 friend class SkGradientShader;
46 typedef SkGradientShaderBase INHERITED; 50 typedef SkGradientShaderBase INHERITED;
47 const SkPoint fStart; 51 const SkPoint fStart;
48 const SkPoint fEnd; 52 const SkPoint fEnd;
49 }; 53 };
50 54
51 #endif 55 #endif
OLDNEW
« no previous file with comments | « src/effects/SkTableColorFilter.cpp ('k') | src/effects/gradients/SkLinearGradient.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698