``` ShareableBitmapConfiguration::ShareableBitmapConfiguration(const IntSize& size, std::optional<DestinationColorSpace> colorSpace, bool isOpaque, unsigned bytesPerPixel, unsigned bytesPerRow #if USE(CG) , CGBitmapInfo bitmapInfo #endif ) : m_size(size) , m_colorSpace(colorSpace) , m_isOpaque(isOpaque) , m_bytesPerPixel(bytesPerPixel) , m_bytesPerRow(bytesPerRow) #if USE(CG) , m_bitmapInfo(bitmapInfo) #endif { ASSERT(!m_size.isEmpty()); } ```
Pull request: https://github.com/WebKit/WebKit/pull/12406
*** This bug has been marked as a duplicate of bug 255001 ***