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

Side by Side Diff: src/utils/android/SkAndroidSDKCanvas.h

Issue 1068163004: Add missing override of willSaveLayer() (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 8 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 | « no previous file | src/utils/android/SkAndroidSDKCanvas.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 * Copyright 2015 Google Inc. 2 * Copyright 2015 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 SkAndroidSDKCanvas_DEFINED 8 #ifndef SkAndroidSDKCanvas_DEFINED
9 #define SkAndroidSDKCanvas_DEFINED 9 #define SkAndroidSDKCanvas_DEFINED
10 10
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 void onDrawDrawable(SkDrawable*) override; 81 void onDrawDrawable(SkDrawable*) override;
82 SkISize getBaseLayerSize() const override; 82 SkISize getBaseLayerSize() const override;
83 bool getClipBounds(SkRect*) const override; 83 bool getClipBounds(SkRect*) const override;
84 bool getClipDeviceBounds(SkIRect*) const override; 84 bool getClipDeviceBounds(SkIRect*) const override;
85 bool isClipEmpty() const override; 85 bool isClipEmpty() const override;
86 bool isClipRect() const override; 86 bool isClipRect() const override;
87 SkSurface* onNewSurface(const SkImageInfo&, const SkSurfaceProps&) override; 87 SkSurface* onNewSurface(const SkImageInfo&, const SkSurfaceProps&) override;
88 const void* onPeekPixels(SkImageInfo*, size_t*) override; 88 const void* onPeekPixels(SkImageInfo*, size_t*) override;
89 void* onAccessTopLayerPixels(SkImageInfo*, size_t*) override; 89 void* onAccessTopLayerPixels(SkImageInfo*, size_t*) override;
90 void willSave() override; 90 void willSave() override;
91 SaveLayerStrategy willSaveLayer(const SkRect*, const SkPaint*, SaveFlags) ov erride;
91 void willRestore() override; 92 void willRestore() override;
92 void didRestore() override; 93 void didRestore() override;
93 void didConcat(const SkMatrix&) override; 94 void didConcat(const SkMatrix&) override;
94 void didSetMatrix(const SkMatrix&) override; 95 void didSetMatrix(const SkMatrix&) override;
95 void onClipRect(const SkRect&, SkRegion::Op, ClipEdgeStyle) override; 96 void onClipRect(const SkRect&, SkRegion::Op, ClipEdgeStyle) override;
96 void onClipRRect(const SkRRect&, SkRegion::Op, ClipEdgeStyle) override; 97 void onClipRRect(const SkRRect&, SkRegion::Op, ClipEdgeStyle) override;
97 void onClipPath(const SkPath&, SkRegion::Op, ClipEdgeStyle) override; 98 void onClipPath(const SkPath&, SkRegion::Op, ClipEdgeStyle) override;
98 void onClipRegion(const SkRegion&, SkRegion::Op) override; 99 void onClipRegion(const SkRegion&, SkRegion::Op) override;
99 void onDiscard() override; 100 void onDiscard() override;
100 101
101 protected: 102 protected:
102 SkCanvas* fProxyTarget; 103 SkCanvas* fProxyTarget;
103 }; 104 };
104 105
105 #endif // SkAndroidSDKCanvas_DEFINED 106 #endif // SkAndroidSDKCanvas_DEFINED
106 107
OLDNEW
« no previous file with comments | « no previous file | src/utils/android/SkAndroidSDKCanvas.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698