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

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

Issue 1216433005: style nit cleanups. e.g. remove 'virtual' on override declarations (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Address code review issues 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
« no previous file with comments | « src/effects/SkAlphaThresholdFilter.cpp ('k') | src/effects/gradients/SkRadialGradient.h » ('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 12 matching lines...) Expand all
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 BitmapType asABitmap(SkBitmap*, SkMatrix*, TileMode*) const override; 31 BitmapType asABitmap(SkBitmap*, SkMatrix*, TileMode*) const override;
32 GradientType asAGradient(GradientInfo* info) const override; 32 GradientType asAGradient(GradientInfo* info) const override;
33 virtual bool asFragmentProcessor(GrContext*, const SkPaint&, const SkMatrix& viewM, 33 bool asFragmentProcessor(GrContext*, const SkPaint&, const SkMatrix& viewM,
34 const SkMatrix*, 34 const SkMatrix*, GrColor*, GrFragmentProcessor**) c onst override;
35 GrColor*, GrFragmentProcessor**) const over ride;
36 35
37 SK_TO_STRING_OVERRIDE() 36 SK_TO_STRING_OVERRIDE()
38 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkLinearGradient) 37 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkLinearGradient)
39 38
40 protected: 39 protected:
41 SkLinearGradient(SkReadBuffer& buffer); 40 SkLinearGradient(SkReadBuffer& buffer);
42 void flatten(SkWriteBuffer& buffer) const override; 41 void flatten(SkWriteBuffer& buffer) const override;
43 Context* onCreateContext(const ContextRec&, void* storage) const override; 42 Context* onCreateContext(const ContextRec&, void* storage) const override;
44 43
45 private: 44 private:
46 friend class SkGradientShader; 45 friend class SkGradientShader;
47 typedef SkGradientShaderBase INHERITED; 46 typedef SkGradientShaderBase INHERITED;
48 const SkPoint fStart; 47 const SkPoint fStart;
49 const SkPoint fEnd; 48 const SkPoint fEnd;
50 }; 49 };
51 50
52 #endif 51 #endif
OLDNEW
« no previous file with comments | « src/effects/SkAlphaThresholdFilter.cpp ('k') | src/effects/gradients/SkRadialGradient.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698