Home
last modified time | relevance | path

Searched refs:m_unmultipliedImageResult (Results 1 – 2 of 2) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/filters/
DFilterEffect.cpp92 if (m_unmultipliedImageResult) in clearResult()
93 m_unmultipliedImageResult.clear(); in clearResult()
109 …m_imageBufferResult->putUnmultipliedImageData(m_unmultipliedImageResult.get(), destinationRect.siz… in asImageBuffer()
177 if (!m_unmultipliedImageResult) { in copyUnmultipliedImage()
180m_unmultipliedImageResult = m_imageBufferResult->getUnmultipliedImageData(IntRect(IntPoint(), m_ab… in copyUnmultipliedImage()
183m_unmultipliedImageResult = ByteArray::create(m_absolutePaintRect.width() * m_absolutePaintRect.he… in copyUnmultipliedImage()
185 unsigned char* destinationComponent = m_unmultipliedImageResult->data(); in copyUnmultipliedImage()
204 copyImageBytes(m_unmultipliedImageResult.get(), destination, rect); in copyUnmultipliedImage()
218 unsigned char* sourceComponent = m_unmultipliedImageResult->data(); in copyPremultipliedImage()
258m_unmultipliedImageResult = ByteArray::create(m_absolutePaintRect.width() * m_absolutePaintRect.he… in createUnmultipliedImageResult()
[all …]
DFilterEffect.h57 …bool hasResult() const { return m_imageBufferResult || m_unmultipliedImageResult || m_premultiplie… in hasResult()
123 RefPtr<ByteArray> m_unmultipliedImageResult; variable