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

Side by Side Diff: include/utils/SkProxyCanvas.h

Issue 174593003: override new virtual onDrawDRRect in util canvas subclasses (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 10 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 | « include/utils/SkNWayCanvas.h ('k') | src/utils/SkDeferredCanvas.cpp » ('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 2011 Google Inc. 3 * Copyright 2011 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 #ifndef SkProxyCanvas_DEFINED 8 #ifndef SkProxyCanvas_DEFINED
9 #define SkProxyCanvas_DEFINED 9 #define SkProxyCanvas_DEFINED
10 10
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 const SkPaint& paint) SK_OVERRIDE; 78 const SkPaint& paint) SK_OVERRIDE;
79 virtual void drawData(const void* data, size_t length) SK_OVERRIDE; 79 virtual void drawData(const void* data, size_t length) SK_OVERRIDE;
80 80
81 virtual void beginCommentGroup(const char* description) SK_OVERRIDE; 81 virtual void beginCommentGroup(const char* description) SK_OVERRIDE;
82 virtual void addComment(const char* kywd, const char* value) SK_OVERRIDE; 82 virtual void addComment(const char* kywd, const char* value) SK_OVERRIDE;
83 virtual void endCommentGroup() SK_OVERRIDE; 83 virtual void endCommentGroup() SK_OVERRIDE;
84 84
85 virtual SkBounder* setBounder(SkBounder* bounder) SK_OVERRIDE; 85 virtual SkBounder* setBounder(SkBounder* bounder) SK_OVERRIDE;
86 virtual SkDrawFilter* setDrawFilter(SkDrawFilter* filter) SK_OVERRIDE; 86 virtual SkDrawFilter* setDrawFilter(SkDrawFilter* filter) SK_OVERRIDE;
87 87
88 protected:
89 virtual void onDrawDRRect(const SkRRect&, const SkRRect&, const SkPaint&) SK _OVERRIDE;
90
88 private: 91 private:
89 SkCanvas* fProxy; 92 SkCanvas* fProxy;
90 93
91 typedef SkCanvas INHERITED; 94 typedef SkCanvas INHERITED;
92 }; 95 };
93 96
94 #endif 97 #endif
OLDNEW
« no previous file with comments | « include/utils/SkNWayCanvas.h ('k') | src/utils/SkDeferredCanvas.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698