1 --- include/core/SkSurfaceProps.h
2 +++ include/core/SkSurfaceProps.h
5 SkSurfaceProps(InitType);
6 SkSurfaceProps(uint32_t flags, InitType);
7 - SkSurfaceProps(const SkSurfaceProps& other);
9 uint32_t flags() const { return fFlags; }
10 SkPixelGeometry pixelGeometry() const { return fPixelGeometry; }
11 --- src/image/SkSurface.cpp
12 +++ src/image/SkSurface.cpp
14 : fFlags(flags), fPixelGeometry(pg)
17 -SkSurfaceProps::SkSurfaceProps(const SkSurfaceProps& other)
18 - : fFlags(other.fFlags)
19 - , fPixelGeometry(other.fPixelGeometry)
22 ///////////////////////////////////////////////////////////////////////////////
24 SkSurface_Base::SkSurface_Base(int width, int height, const SkSurfaceProps* props)