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

Side by Side Diff: src/animator/SkDrawPaint.h

Issue 831113002: Cleanup: More override fixes - another round. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: 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
« no previous file with comments | « src/animator/SkDrawLine.h ('k') | src/animator/SkDrawPath.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 /* 2 /*
3 * Copyright 2006 The Android Open Source Project 3 * Copyright 2006 The Android Open Source Project
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 9
10 #ifndef SkDrawPaint_DEFINED 10 #ifndef SkDrawPaint_DEFINED
11 #define SkDrawPaint_DEFINED 11 #define SkDrawPaint_DEFINED
12 12
13 #include "SkADrawable.h" 13 #include "SkADrawable.h"
14 #include "SkIntArray.h" 14 #include "SkIntArray.h"
15 #include "SkMemberInfo.h" 15 #include "SkMemberInfo.h"
16 #include "SkPaint.h" 16 #include "SkPaint.h"
17 #include "SkXfermode.h" 17 #include "SkXfermode.h"
18 18
19 class SkDrawMaskFilter; 19 class SkDrawMaskFilter;
20 class SkDrawPathEffect; 20 class SkDrawPathEffect;
21 class SkDrawShader; 21 class SkDrawShader;
22 class SkTransferMode; 22 class SkTransferMode;
23 class SkDrawTypeface; 23 class SkDrawTypeface;
24 24
25 class SkDrawPaint : public SkADrawable { 25 class SkDrawPaint : public SkADrawable {
26 DECLARE_DRAW_MEMBER_INFO(Paint); 26 DECLARE_DRAW_MEMBER_INFO(Paint);
27 SkDrawPaint(); 27 SkDrawPaint();
28 virtual ~SkDrawPaint(); 28 virtual ~SkDrawPaint();
29 virtual bool add(SkAnimateMaker* , SkDisplayable* child); 29 virtual bool add(SkAnimateMaker* , SkDisplayable* child);
30 virtual SkDisplayable* deepCopy(SkAnimateMaker* ); 30 virtual SkDisplayable* deepCopy(SkAnimateMaker* ) SK_OVERRIDE;
31 virtual bool draw(SkAnimateMaker& ); 31 virtual bool draw(SkAnimateMaker& ) SK_OVERRIDE;
32 #ifdef SK_DUMP_ENABLED 32 #ifdef SK_DUMP_ENABLED
33 virtual void dump(SkAnimateMaker* ); 33 virtual void dump(SkAnimateMaker* ) SK_OVERRIDE;
34 #endif 34 #endif
35 virtual void executeFunction(SkDisplayable* target, int index, 35 virtual void executeFunction(SkDisplayable* target, int index,
36 SkTDArray<SkScriptValue>& parameters, SkDisplayTypes type, 36 SkTDArray<SkScriptValue>& parameters, SkDisplayTypes type,
37 SkScriptValue* ); 37 SkScriptValue* ) SK_OVERRIDE;
38 virtual const SkFunctionParamType* getFunctionsParameters(); 38 virtual const SkFunctionParamType* getFunctionsParameters() SK_OVERRIDE;
39 virtual bool getProperty(int index, SkScriptValue* value) const; 39 virtual bool getProperty(int index, SkScriptValue* value) const SK_OVERRIDE;
40 virtual bool resolveIDs(SkAnimateMaker& maker, SkDisplayable* original, SkAp ply* apply); 40 virtual bool resolveIDs(SkAnimateMaker& maker, SkDisplayable* original, SkAp ply* apply) SK_OVERRIDE;
41 protected: 41 protected:
42 static const SkFunctionParamType fFunctionParameters[]; 42 static const SkFunctionParamType fFunctionParameters[];
43 void setupPaint(SkPaint* paint) const; 43 void setupPaint(SkPaint* paint) const;
44 public: 44 public:
45 SkBool antiAlias; 45 SkBool antiAlias;
46 SkDrawColor* color; 46 SkDrawColor* color;
47 SkBool fakeBold; 47 SkBool fakeBold;
48 SkBool filterBitmap; 48 SkBool filterBitmap;
49 SkBool linearText; 49 SkBool linearText;
50 SkDrawMaskFilter* maskFilter; 50 SkDrawMaskFilter* maskFilter;
(...skipping 19 matching lines...) Expand all
70 SkBool8 fOwnsShader; 70 SkBool8 fOwnsShader;
71 SkBool8 fOwnsTransferMode; 71 SkBool8 fOwnsTransferMode;
72 SkBool8 fOwnsTypeface; 72 SkBool8 fOwnsTypeface;
73 private: 73 private:
74 typedef SkADrawable INHERITED; 74 typedef SkADrawable INHERITED;
75 friend class SkTextToPath; 75 friend class SkTextToPath;
76 friend class SkSaveLayer; 76 friend class SkSaveLayer;
77 }; 77 };
78 78
79 #endif // SkDrawPaint_DEFINED 79 #endif // SkDrawPaint_DEFINED
OLDNEW
« no previous file with comments | « src/animator/SkDrawLine.h ('k') | src/animator/SkDrawPath.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698