Home
last modified time | relevance | path

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

/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
DFilterEffect.cpp337 unsigned char* destinationComponent = m_unmultipliedImageResult->data(); in copyUnmultipliedImage() local
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()
346 destinationComponent[0] = 0; in copyUnmultipliedImage()
347 destinationComponent[1] = 0; in copyUnmultipliedImage()
348 destinationComponent[2] = 0; in copyUnmultipliedImage()
350 destinationComponent[3] = alpha; in copyUnmultipliedImage()
352 destinationComponent += 4; in copyUnmultipliedImage()
371 unsigned char* destinationComponent = m_premultipliedImageResult->data(); in copyPremultipliedImage() local
[all …]