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

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

Issue 1225673007: Initial CL to create dummy GrShaderDataManager and thread it through (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: rebase Created 5 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
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 13 matching lines...) Expand all
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 BitmapType asABitmap(SkBitmap* bitmap, SkMatrix* matrix, TileMode* xy) const override; 31 BitmapType asABitmap(SkBitmap* bitmap, SkMatrix* matrix, TileMode* xy) const override;
32 GradientType asAGradient(GradientInfo* info) const override; 32 GradientType asAGradient(GradientInfo* info) const override;
33 bool asFragmentProcessor(GrContext*, const SkPaint&, const SkMatrix& viewM, 33 bool asFragmentProcessor(GrContext*, const SkPaint&, const SkMatrix& viewM,
34 const SkMatrix*, GrColor*, 34 const SkMatrix*, GrColor*, GrShaderDataManager*,
35 GrFragmentProcessor**) const override; 35 GrFragmentProcessor**) const override;
36 36
37 SK_TO_STRING_OVERRIDE() 37 SK_TO_STRING_OVERRIDE()
38 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkRadialGradient) 38 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkRadialGradient)
39 39
40 protected: 40 protected:
41 SkRadialGradient(SkReadBuffer& buffer); 41 SkRadialGradient(SkReadBuffer& buffer);
42 void flatten(SkWriteBuffer& buffer) const override; 42 void flatten(SkWriteBuffer& buffer) const override;
43 Context* onCreateContext(const ContextRec&, void* storage) const override; 43 Context* onCreateContext(const ContextRec&, void* storage) const override;
44 44
45 private: 45 private:
46 const SkPoint fCenter; 46 const SkPoint fCenter;
47 const SkScalar fRadius; 47 const SkScalar fRadius;
48 48
49 friend class SkGradientShader; 49 friend class SkGradientShader;
50 typedef SkGradientShaderBase INHERITED; 50 typedef SkGradientShaderBase INHERITED;
51 }; 51 };
52 52
53 #endif 53 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698