Searched refs:sourcePixel (Results 1 - 3 of 3) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/haiku/
H A DImageBufferHaiku.cpp134 const uint8* sourcePixel = sourceRows; local
138 destPixel[0] = sourcePixel[2];
139 destPixel[1] = sourcePixel[1];
140 destPixel[2] = sourcePixel[0];
141 destPixel[3] = sourcePixel[3];
143 sourcePixel += 4;
158 const uint8* sourcePixel = sourceRows; local
162 destPixel[0] = static_cast<uint16>(sourcePixel[2]) * sourcePixel[3] / 255;
163 destPixel[1] = static_cast<uint16>(sourcePixel[
187 const uint8* sourcePixel = sourceRows; local
[all...]
/external/webkit/Source/WebCore/platform/graphics/filters/
H A DFilterEffect.cpp163 unsigned char *sourcePixel = source->data() + ((yOrigin * m_absolutePaintRect.width()) + xOrigin) * 4; local
166 memcpy(destinationPixel, sourcePixel, size);
168 sourcePixel += sourceScanline;
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/
H A DTextureHelper.java262 TexturePixel sourcePixel = new TexturePixel();
270 sourcePixel.fromImage(image.getFormat(), sourceData, i);
271 resultPixel.merge(sourcePixel);
273 sourcePixel.fromImage(image.getFormat(), sourceData, i);
274 resultPixel.merge(sourcePixel);

Completed in 88 milliseconds