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

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

Issue 806653007: Fix up all the easy virtual ... SK_OVERRIDE cases. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: rebase Created 5 years, 11 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 * 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
11 #include "SkGradientShaderPriv.h" 11 #include "SkGradientShaderPriv.h"
12 12
13 class SkLinearGradient : public SkGradientShaderBase { 13 class SkLinearGradient : public SkGradientShaderBase {
14 public: 14 public:
15 SkLinearGradient(const SkPoint pts[2], const Descriptor&); 15 SkLinearGradient(const SkPoint pts[2], const Descriptor&);
16 16
17 virtual size_t contextSize() const SK_OVERRIDE; 17 size_t contextSize() const SK_OVERRIDE;
18 18
19 class LinearGradientContext : public SkGradientShaderBase::GradientShaderBas eContext { 19 class LinearGradientContext : public SkGradientShaderBase::GradientShaderBas eContext {
20 public: 20 public:
21 LinearGradientContext(const SkLinearGradient&, const ContextRec&); 21 LinearGradientContext(const SkLinearGradient&, const ContextRec&);
22 ~LinearGradientContext() {} 22 ~LinearGradientContext() {}
23 23
24 virtual void shadeSpan(int x, int y, SkPMColor dstC[], int count) SK_OVE RRIDE; 24 void shadeSpan(int x, int y, SkPMColor dstC[], int count) SK_OVERRIDE;
25 virtual void shadeSpan16(int x, int y, uint16_t dstC[], int count) SK_OV ERRIDE; 25 void shadeSpan16(int x, int y, uint16_t dstC[], int count) SK_OVERRIDE;
26 26
27 private: 27 private:
28 typedef SkGradientShaderBase::GradientShaderBaseContext INHERITED; 28 typedef SkGradientShaderBase::GradientShaderBaseContext INHERITED;
29 }; 29 };
30 30
31 virtual BitmapType asABitmap(SkBitmap*, SkMatrix*, TileMode*) const SK_OVERR IDE; 31 BitmapType asABitmap(SkBitmap*, SkMatrix*, TileMode*) const SK_OVERRIDE;
32 virtual GradientType asAGradient(GradientInfo* info) const SK_OVERRIDE; 32 GradientType asAGradient(GradientInfo* info) const SK_OVERRIDE;
33 virtual bool asFragmentProcessor(GrContext*, const SkPaint&, const SkMatrix& viewM, 33 virtual bool asFragmentProcessor(GrContext*, const SkPaint&, const SkMatrix& viewM,
34 const SkMatrix*, 34 const SkMatrix*,
35 GrColor*, GrFragmentProcessor**) const SK_O VERRIDE; 35 GrColor*, GrFragmentProcessor**) const SK_O VERRIDE;
36 36
37 SK_TO_STRING_OVERRIDE() 37 SK_TO_STRING_OVERRIDE()
38 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkLinearGradient) 38 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkLinearGradient)
39 39
40 protected: 40 protected:
41 SkLinearGradient(SkReadBuffer& buffer); 41 SkLinearGradient(SkReadBuffer& buffer);
42 virtual void flatten(SkWriteBuffer& buffer) const SK_OVERRIDE; 42 void flatten(SkWriteBuffer& buffer) const SK_OVERRIDE;
43 virtual Context* onCreateContext(const ContextRec&, void* storage) const SK_ OVERRIDE; 43 Context* onCreateContext(const ContextRec&, void* storage) const SK_OVERRIDE ;
44 44
45 private: 45 private:
46 friend class SkGradientShader; 46 friend class SkGradientShader;
47 typedef SkGradientShaderBase INHERITED; 47 typedef SkGradientShaderBase INHERITED;
48 const SkPoint fStart; 48 const SkPoint fStart;
49 const SkPoint fEnd; 49 const SkPoint fEnd;
50 }; 50 };
51 51
52 #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