aboutsummaryrefslogtreecommitdiffhomepage
path: root/gm/imageblurrepeatmode.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/imageblurrepeatmode.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/imageblurrepeatmode.cpp')
-rw-r--r--gm/imageblurrepeatmode.cpp10
1 files changed, 1 insertions, 9 deletions
diff --git a/gm/imageblurrepeatmode.cpp b/gm/imageblurrepeatmode.cpp
index 6f38029e71..b7705bec04 100644
--- a/gm/imageblurrepeatmode.cpp
+++ b/gm/imageblurrepeatmode.cpp
@@ -10,17 +10,9 @@
#include "SkSurface.h"
#include "SkBlurImageFilter.h"
-static sk_sp<SkSurface> make_surface(SkCanvas* canvas, const SkImageInfo& info) {
- auto surface = canvas->makeSurface(info);
- if (!surface) {
- surface = SkSurface::MakeRaster(info);
- }
- return surface;
-}
-
static sk_sp<SkImage> make_image(SkCanvas* canvas, int direction) {
SkImageInfo info = SkImageInfo::MakeN32Premul(250, 200);
- auto surface = make_surface(canvas, info);
+ auto surface = sk_tool_utils::makeSurface(canvas, info);
SkCanvas* c = surface->getCanvas();
SkPaint paint;
paint.setAntiAlias(true);