aboutsummaryrefslogtreecommitdiffhomepage
path: root/gm/ninepatchstretch.cpp
diff options
context:
space:
mode:
authorGravatar Mike Reed <reed@google.com>2018-01-02 15:40:29 -0500
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2018-01-02 21:06:41 +0000
commit46596ae50559e89a0a2462573ac9448cf309cf56 (patch)
treebc515e91123b6d0d14f7873c4ab7ce2d22b41bcc /gm/ninepatchstretch.cpp
parent99b504018b31d63566995b3fc114c940ed4749c4 (diff)
use tool_utils to encapsulate checking for recording canvas and makeSurface
Bug: skia: Change-Id: Ia93ee09dd213b8d6ad5c18e887add5ff3448c824 Reviewed-on: https://skia-review.googlesource.com/90243 Reviewed-by: Mike Reed <reed@google.com> Commit-Queue: Mike Reed <reed@google.com>
Diffstat (limited to 'gm/ninepatchstretch.cpp')
-rw-r--r--gm/ninepatchstretch.cpp7
1 files changed, 2 insertions, 5 deletions
diff --git a/gm/ninepatchstretch.cpp b/gm/ninepatchstretch.cpp
index 90a02161ef..c905cee803 100644
--- a/gm/ninepatchstretch.cpp
+++ b/gm/ninepatchstretch.cpp
@@ -7,14 +7,11 @@
#include "gm.h"
#include "SkSurface.h"
+#include "sk_tool_utils.h"
static sk_sp<SkSurface> make_surface(SkCanvas* root, int N) {
SkImageInfo info = SkImageInfo::MakeN32Premul(N, N);
- auto surface = root->makeSurface(info);
- if (!surface) {
- surface = SkSurface::MakeRaster(info);
- }
- return surface;
+ return sk_tool_utils::makeSurface(root, info);
}
static sk_sp<SkImage> make_image(SkCanvas* root, SkIRect* center) {