aboutsummaryrefslogtreecommitdiffhomepage
path: root/gm/dftext.cpp
diff options
context:
space:
mode:
authorGravatar bsalomon <bsalomon@google.com>2015-01-16 07:32:33 -0800
committerGravatar Commit bot <commit-bot@chromium.org>2015-01-16 07:32:33 -0800
commitafe3005be3392e43bc51eb7eb2017eefaed85ad1 (patch)
tree3b96ec2e3249a928a0e876140bec3bf3e9dbb13f /gm/dftext.cpp
parentb50ced703030dfbda4fc3ef5e6ec9a52fc0405f8 (diff)
Require budget decision when creating a RenderTarget SkSurface.
Restructure SkGpuDevice creation: *SkSurfaceProps are optional. *Use SkSurfaceProps to communicate DF text rather than a flag. *Tell SkGpuDevice::Create whether RT comes from cache or not. Review URL: https://codereview.chromium.org/848903004
Diffstat (limited to 'gm/dftext.cpp')
-rwxr-xr-xgm/dftext.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/gm/dftext.cpp b/gm/dftext.cpp
index 36b8d5501c..8ac36cce4c 100755
--- a/gm/dftext.cpp
+++ b/gm/dftext.cpp
@@ -68,7 +68,8 @@ protected:
SkImageInfo info = SkImageInfo::MakeN32Premul(onISize());
SkSurfaceProps props(SkSurfaceProps::kUseDistanceFieldFonts_Flag,
SkSurfaceProps::kLegacyFontHost_InitType);
- SkAutoTUnref<SkSurface> surface(SkSurface::NewRenderTarget(ctx, info, 0, &props));
+ SkAutoTUnref<SkSurface> surface(SkSurface::NewRenderTarget(ctx, SkSurface::kNo_Budgeted,
+ info, 0, &props));
SkCanvas* canvas = surface.get() ? surface->getCanvas() : inputCanvas;
// init our new canvas with the old canvas's matrix
canvas->setMatrix(inputCanvas->getTotalMatrix());