diff options
author | robertphillips <robertphillips@google.com> | 2015-06-22 09:46:59 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-06-22 09:46:59 -0700 |
commit | 9a53fd7c41554630124522f4b6eedc16912abbb7 (patch) | |
tree | 20550e4369717dfa1082ba4913a4dc646d040b5e /src/svg | |
parent | 462a33c7ac6ad82ac3511884d6448491e9e9a647 (diff) |
Begin kLegacyFontHost_InitType cleanup
This CL starts the process of pushing kLegacyFontHost_InitType-type SkSurfaceProps up the call stack and out of Skia. It:
Gets rid of the default SkBaseDevice ctor. This means everyone has to always hand an explicit SkSurfaceProps to it.
It makes public the SkBitmapDevice creation methods that require SkSurfaceProps.
Removes (in Skia's code base) all SkBitmapDevice ctor calls w/o SkSurfaceProps.
Makes the "recording" canvases (e.g., pdf, svg, xps) explicitly not use kLegacyFontHost_InitType.
Replicates the creating canvas/device's flags on saveLayer devices
BUG=skia:3934
Review URL: https://codereview.chromium.org/1204433002
Diffstat (limited to 'src/svg')
-rw-r--r-- | src/svg/SkSVGDevice.cpp | 3 | ||||
-rw-r--r-- | src/svg/SkSVGDevice.h | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/src/svg/SkSVGDevice.cpp b/src/svg/SkSVGDevice.cpp index 480dd92b38..6038353c9c 100644 --- a/src/svg/SkSVGDevice.cpp +++ b/src/svg/SkSVGDevice.cpp @@ -569,7 +569,8 @@ SkBaseDevice* SkSVGDevice::Create(const SkISize& size, SkXMLWriter* writer) { } SkSVGDevice::SkSVGDevice(const SkISize& size, SkXMLWriter* writer) - : fWriter(writer) + : INHERITED(SkSurfaceProps(0, kUnknown_SkPixelGeometry)) + , fWriter(writer) , fResourceBucket(SkNEW(ResourceBucket)) { SkASSERT(writer); diff --git a/src/svg/SkSVGDevice.h b/src/svg/SkSVGDevice.h index 249cd65f9d..e3691a957f 100644 --- a/src/svg/SkSVGDevice.h +++ b/src/svg/SkSVGDevice.h @@ -70,6 +70,8 @@ private: SkAutoTDelete<AutoElement> fRootElement; SkAutoTDelete<ResourceBucket> fResourceBucket; SkBitmap fLegacyBitmap; + + typedef SkBaseDevice INHERITED; }; #endif // SkSVGDevice_DEFINED |