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

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

Issue 246403013: Revert of Revert of Extract most of the mutable state of SkShader into a separate Context object. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 8 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 SkLinearGradient_DEFINED 9 #ifndef SkLinearGradient_DEFINED
10 #define SkLinearGradient_DEFINED 10 #define SkLinearGradient_DEFINED
11 11
12 #include "SkGradientShaderPriv.h" 12 #include "SkGradientShaderPriv.h"
13 13
14 class SkLinearGradient : public SkGradientShaderBase { 14 class SkLinearGradient : public SkGradientShaderBase {
15 public: 15 public:
16 SkLinearGradient(const SkPoint pts[2], const Descriptor&); 16 SkLinearGradient(const SkPoint pts[2], const Descriptor&);
17 17
18 virtual bool setContext(const SkBitmap&, const SkPaint&, const SkMatrix&) SK _OVERRIDE; 18 virtual SkShader::Context* createContext(const SkBitmap&, const SkPaint&, co nst SkMatrix&,
19 virtual void shadeSpan(int x, int y, SkPMColor dstC[], int count) SK_OVERRID E; 19 void* storage) const SK_OVERRIDE;
20 virtual void shadeSpan16(int x, int y, uint16_t dstC[], int count) SK_OVERRI DE; 20 virtual size_t contextSize() const SK_OVERRIDE;
21
22 class LinearGradientContext : public SkGradientShaderBase::GradientShaderBas eContext {
23 public:
24 LinearGradientContext(const SkLinearGradient& shader, const SkBitmap& de vice,
25 const SkPaint& paint, const SkMatrix& matrix);
26 ~LinearGradientContext() {}
27
28 virtual void shadeSpan(int x, int y, SkPMColor dstC[], int count) SK_OVE RRIDE;
29 virtual void shadeSpan16(int x, int y, uint16_t dstC[], int count) SK_OV ERRIDE;
30
31 private:
32 typedef SkGradientShaderBase::GradientShaderBaseContext INHERITED;
33 };
34
21 virtual BitmapType asABitmap(SkBitmap*, SkMatrix*, TileMode*) const SK_OVERR IDE; 35 virtual BitmapType asABitmap(SkBitmap*, SkMatrix*, TileMode*) const SK_OVERR IDE;
22 virtual GradientType asAGradient(GradientInfo* info) const SK_OVERRIDE; 36 virtual GradientType asAGradient(GradientInfo* info) const SK_OVERRIDE;
23 virtual GrEffectRef* asNewEffect(GrContext* context, const SkPaint&) const S K_OVERRIDE; 37 virtual GrEffectRef* asNewEffect(GrContext* context, const SkPaint&) const S K_OVERRIDE;
24 38
25 SK_TO_STRING_OVERRIDE() 39 SK_TO_STRING_OVERRIDE()
26 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkLinearGradient) 40 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkLinearGradient)
27 41
28 protected: 42 protected:
29 SkLinearGradient(SkReadBuffer& buffer); 43 SkLinearGradient(SkReadBuffer& buffer);
30 virtual void flatten(SkWriteBuffer& buffer) const SK_OVERRIDE; 44 virtual void flatten(SkWriteBuffer& buffer) const SK_OVERRIDE;
31 45
32 private: 46 private:
33 typedef SkGradientShaderBase INHERITED; 47 typedef SkGradientShaderBase INHERITED;
34 const SkPoint fStart; 48 const SkPoint fStart;
35 const SkPoint fEnd; 49 const SkPoint fEnd;
36 }; 50 };
37 51
38 #endif 52 #endif
OLDNEW
« no previous file with comments | « src/effects/gradients/SkGradientShaderPriv.h ('k') | src/effects/gradients/SkLinearGradient.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698