Home
last modified time | relevance | path

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

/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
DFilterEffect.cpp336 unsigned char* sourceComponent = m_premultipliedImageResult->data(); in copyUnmultipliedImage() local
338 …unsigned char* end = sourceComponent + (m_absolutePaintRect.width() * m_absolutePaintRect.height()… in copyUnmultipliedImage()
339 while (sourceComponent < end) { in copyUnmultipliedImage()
340 int alpha = sourceComponent[3]; in copyUnmultipliedImage()
342 destinationComponent[0] = static_cast<int>(sourceComponent[0]) * 255 / alpha; in copyUnmultipliedImage()
343 destinationComponent[1] = static_cast<int>(sourceComponent[1]) * 255 / alpha; in copyUnmultipliedImage()
344 destinationComponent[2] = static_cast<int>(sourceComponent[2]) * 255 / alpha; in copyUnmultipliedImage()
351 sourceComponent += 4; in copyUnmultipliedImage()
370 unsigned char* sourceComponent = m_unmultipliedImageResult->data(); in copyPremultipliedImage() local
372 …unsigned char* end = sourceComponent + (m_absolutePaintRect.width() * m_absolutePaintRect.height()… in copyPremultipliedImage()
[all …]