Home | History | Annotate | Download | only in filters

Lines Matching refs:ByteArray

30 #include <wtf/ByteArray.h>
113 PassRefPtr<ByteArray> FilterEffect::asUnmultipliedImage(const IntRect& rect)
116 RefPtr<ByteArray> imageData = ByteArray::create(rect.width() * rect.height() * 4);
121 PassRefPtr<ByteArray> FilterEffect::asPremultipliedImage(const IntRect& rect)
124 RefPtr<ByteArray> imageData = ByteArray::create(rect.width() * rect.height() * 4);
129 inline void FilterEffect::copyImageBytes(ByteArray* source, ByteArray* destination, const IntRect& rect)
173 void FilterEffect::copyUnmultipliedImage(ByteArray* destination, const IntRect& rect)
183 m_unmultipliedImageResult = ByteArray::create(m_absolutePaintRect.width() * m_absolutePaintRect.height() * 4);
207 void FilterEffect::copyPremultipliedImage(ByteArray* destination, const IntRect& rect)
217 m_premultipliedImageResult = ByteArray::create(m_absolutePaintRect.width() * m_absolutePaintRect.height() * 4);
249 ByteArray* FilterEffect::createUnmultipliedImageResult()
258 m_unmultipliedImageResult = ByteArray::create(m_absolutePaintRect.width() * m_absolutePaintRect.height() * 4);
262 ByteArray* FilterEffect::createPremultipliedImageResult()
271 m_premultipliedImageResult = ByteArray::create(m_absolutePaintRect.width() * m_absolutePaintRect.height() * 4);