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

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

Issue 15733007: use Descriptor struct to encapsulate all the common paramaeters between our various gradient types.… (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Created 7 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 | Annotate | Revision Log
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], 16 SkLinearGradient(const SkPoint pts[2], const Descriptor&);
17 const SkColor colors[], const SkScalar pos[], int colorCoun t,
18 SkShader::TileMode mode, SkUnitMapper* mapper);
19 17
20 virtual bool setContext(const SkBitmap&, const SkPaint&, const SkMatrix&) SK _OVERRIDE; 18 virtual bool setContext(const SkBitmap&, const SkPaint&, const SkMatrix&) SK _OVERRIDE;
21 virtual void shadeSpan(int x, int y, SkPMColor dstC[], int count) SK_OVERRID E; 19 virtual void shadeSpan(int x, int y, SkPMColor dstC[], int count) SK_OVERRID E;
22 virtual void shadeSpan16(int x, int y, uint16_t dstC[], int count) SK_OVERRI DE; 20 virtual void shadeSpan16(int x, int y, uint16_t dstC[], int count) SK_OVERRI DE;
23 virtual BitmapType asABitmap(SkBitmap*, SkMatrix*, TileMode*) const SK_OVERR IDE; 21 virtual BitmapType asABitmap(SkBitmap*, SkMatrix*, TileMode*) const SK_OVERR IDE;
24 virtual GradientType asAGradient(GradientInfo* info) const SK_OVERRIDE; 22 virtual GradientType asAGradient(GradientInfo* info) const SK_OVERRIDE;
25 virtual GrEffectRef* asNewEffect(GrContext* context, const SkPaint&) const S K_OVERRIDE; 23 virtual GrEffectRef* asNewEffect(GrContext* context, const SkPaint&) const S K_OVERRIDE;
26 24
27 SK_DEVELOPER_TO_STRING() 25 SK_DEVELOPER_TO_STRING()
28 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkLinearGradient) 26 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkLinearGradient)
29 27
30 protected: 28 protected:
31 SkLinearGradient(SkFlattenableReadBuffer& buffer); 29 SkLinearGradient(SkFlattenableReadBuffer& buffer);
32 virtual void flatten(SkFlattenableWriteBuffer& buffer) const SK_OVERRIDE; 30 virtual void flatten(SkFlattenableWriteBuffer& buffer) const SK_OVERRIDE;
33 31
34 private: 32 private:
35 typedef SkGradientShaderBase INHERITED; 33 typedef SkGradientShaderBase INHERITED;
36 const SkPoint fStart; 34 const SkPoint fStart;
37 const SkPoint fEnd; 35 const SkPoint fEnd;
38 }; 36 };
39 37
40 #endif 38 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698