aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--bench/PictureNestingBench.cpp6
-rw-r--r--gm/convexpolyeffect.cpp6
2 files changed, 5 insertions, 7 deletions
diff --git a/bench/PictureNestingBench.cpp b/bench/PictureNestingBench.cpp
index f1adb60840..c2848833b7 100644
--- a/bench/PictureNestingBench.cpp
+++ b/bench/PictureNestingBench.cpp
@@ -99,7 +99,11 @@ public:
}
protected:
- virtual void onDraw(const int loops, SkCanvas* canvas) {
+ virtual bool isSuitableFor(Backend backend) {
+ return backend == kNonRendering_Backend;
+ }
+
+ virtual void onDraw(const int loops, SkCanvas*) {
SkIPoint canvasSize = onGetSize();
SkPictureRecorder recorder;
diff --git a/gm/convexpolyeffect.cpp b/gm/convexpolyeffect.cpp
index 0938e58db0..4f84c615d4 100644
--- a/gm/convexpolyeffect.cpp
+++ b/gm/convexpolyeffect.cpp
@@ -22,12 +22,6 @@
#include "effects/GrConvexPolyEffect.h"
-namespace {
-extern const GrVertexAttrib kAttribs[] = {
- {kVec2f_GrVertexAttribType, 0, kPosition_GrVertexAttribBinding},
-};
-}
-
namespace skiagm {
/**
* This GM directly exercises a GrEffect that draws convex polygons.