aboutsummaryrefslogtreecommitdiffhomepage
path: root/dm
diff options
context:
space:
mode:
authorGravatar reed <reed@google.com>2014-09-21 09:39:55 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2014-09-21 09:39:55 -0700
commit3716fd067a5621bb94a6cb08d72afec8bf3aceda (patch)
treecf5ceefd515bee37eec7404e3b86cd18a4d9ee80 /dm
parent00a138c542bec58cac1a2ecc32b08c8312063ae5 (diff)
introduce Props to surface (work in progress)
BUG=skia: R=robertphillips@google.com, bsalomon@google.com, jvanverth@google.com, bungeman@google.com, fmalita@google.com, vangelis@chromium.org, reed@chromium.org Author: reed@google.com Review URL: https://codereview.chromium.org/551463004
Diffstat (limited to 'dm')
-rw-r--r--dm/DMGpuSupport.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/dm/DMGpuSupport.h b/dm/DMGpuSupport.h
index a3c487d596..af6270dfc3 100644
--- a/dm/DMGpuSupport.h
+++ b/dm/DMGpuSupport.h
@@ -22,7 +22,7 @@ static inline SkSurface* NewGpuSurface(GrContextFactory* grFactory,
GrGLStandard gpuAPI,
SkImageInfo info,
int samples) {
- return SkSurface::NewRenderTarget(grFactory->get(type, gpuAPI), info, samples);
+ return SkSurface::NewRenderTarget(grFactory->get(type, gpuAPI), info, samples, NULL);
}
} // namespace DM