diff options
author | robertphillips <robertphillips@google.com> | 2015-06-19 11:49:52 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-06-19 11:49:52 -0700 |
commit | fcf7829b67b798aff4c41c4688daa9c7381991e6 (patch) | |
tree | f19261a4bfcee389dec33fa28698b0737edcd5dc /src/image | |
parent | 97c595f304567abac00dbe4fa6ea9b4d8bf5d89f (diff) |
remove SkDeviceProperties
There is a lot more clean up to do here but this is probably a big enough bite.
Review URL: https://codereview.chromium.org/1196683003
Diffstat (limited to 'src/image')
-rw-r--r-- | src/image/SkSurface_Gpu.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/image/SkSurface_Gpu.cpp b/src/image/SkSurface_Gpu.cpp index 0db3e8ceca..e3e61a6215 100644 --- a/src/image/SkSurface_Gpu.cpp +++ b/src/image/SkSurface_Gpu.cpp @@ -32,7 +32,7 @@ SkCanvas* SkSurface_Gpu::onNewCanvas() { // When we think this works... // flags |= SkCanvas::kConservativeRasterClip_InitFlag; - return SkNEW_ARGS(SkCanvas, (fDevice, &this->props(), flags)); + return SkNEW_ARGS(SkCanvas, (fDevice, flags)); } SkSurface* SkSurface_Gpu::onNewSurface(const SkImageInfo& info) { |