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

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

Issue 312553006: remove SkBounder -- unused and unloved (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: address review comments Created 6 years, 6 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/SkDeferredCanvas.h ('k') | include/utils/SkProxyCanvas.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 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 8
9 #ifndef SkNWayCanvas_DEFINED 9 #ifndef SkNWayCanvas_DEFINED
10 #define SkNWayCanvas_DEFINED 10 #define SkNWayCanvas_DEFINED
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 virtual void drawSprite(const SkBitmap& bitmap, int left, int top, 44 virtual void drawSprite(const SkBitmap& bitmap, int left, int top,
45 const SkPaint*) SK_OVERRIDE; 45 const SkPaint*) SK_OVERRIDE;
46 virtual void drawPicture(SkPicture&) SK_OVERRIDE; 46 virtual void drawPicture(SkPicture&) SK_OVERRIDE;
47 virtual void drawVertices(VertexMode vmode, int vertexCount, 47 virtual void drawVertices(VertexMode vmode, int vertexCount,
48 const SkPoint vertices[], const SkPoint texs[], 48 const SkPoint vertices[], const SkPoint texs[],
49 const SkColor colors[], SkXfermode* xmode, 49 const SkColor colors[], SkXfermode* xmode,
50 const uint16_t indices[], int indexCount, 50 const uint16_t indices[], int indexCount,
51 const SkPaint&) SK_OVERRIDE; 51 const SkPaint&) SK_OVERRIDE;
52 virtual void drawData(const void* data, size_t length) SK_OVERRIDE; 52 virtual void drawData(const void* data, size_t length) SK_OVERRIDE;
53 53
54 virtual SkBounder* setBounder(SkBounder*) SK_OVERRIDE;
55 virtual SkDrawFilter* setDrawFilter(SkDrawFilter*) SK_OVERRIDE; 54 virtual SkDrawFilter* setDrawFilter(SkDrawFilter*) SK_OVERRIDE;
56 55
57 virtual void beginCommentGroup(const char* description) SK_OVERRIDE; 56 virtual void beginCommentGroup(const char* description) SK_OVERRIDE;
58 virtual void addComment(const char* kywd, const char* value) SK_OVERRIDE; 57 virtual void addComment(const char* kywd, const char* value) SK_OVERRIDE;
59 virtual void endCommentGroup() SK_OVERRIDE; 58 virtual void endCommentGroup() SK_OVERRIDE;
60 59
61 protected: 60 protected:
62 SkTDArray<SkCanvas*> fList; 61 SkTDArray<SkCanvas*> fList;
63 62
64 virtual void willSave(SaveFlags) SK_OVERRIDE; 63 virtual void willSave(SaveFlags) SK_OVERRIDE;
(...skipping 19 matching lines...) Expand all
84 virtual void onClipRegion(const SkRegion&, SkRegion::Op) SK_OVERRIDE; 83 virtual void onClipRegion(const SkRegion&, SkRegion::Op) SK_OVERRIDE;
85 84
86 class Iter; 85 class Iter;
87 86
88 private: 87 private:
89 typedef SkCanvas INHERITED; 88 typedef SkCanvas INHERITED;
90 }; 89 };
91 90
92 91
93 #endif 92 #endif
OLDNEW
« no previous file with comments | « include/utils/SkDeferredCanvas.h ('k') | include/utils/SkProxyCanvas.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698