Searched refs:destRows (Results 1 - 5 of 5) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/cg/
H A DImageBufferDataCG.cpp149 unsigned char* destRows = data + desty * destBytesPerRow + destx * 4; local
170 dst.data = destRows;
181 destRows[basex] = (srcRows[basex] * 255) / alpha;
182 destRows[basex + 1] = (srcRows[basex + 1] * 255) / alpha;
183 destRows[basex + 2] = (srcRows[basex + 2] * 255) / alpha;
184 destRows[basex + 3] = alpha;
186 reinterpret_cast<uint32_t*>(destRows + basex)[0] = reinterpret_cast<uint32_t*>(srcRows + basex)[0];
189 destRows += destBytesPerRow;
204 scanlineData.destData = destRows;
219 dest.data = destRows;
289 unsigned char* destRows; local
[all...]
/external/webkit/Source/WebCore/platform/graphics/haiku/
H A DImageBufferHaiku.cpp130 uint8* destRows, unsigned destBytesPerRow,
135 uint8* destPixel = destRows;
146 destRows += destBytesPerRow;
151 uint8* destRows, unsigned destBytesPerRow,
159 uint8* destPixel = destRows;
170 destRows += destBytesPerRow;
174 destRows, destBytesPerRow,
180 uint8* destRows, unsigned destBytesPerRow,
188 uint8* destPixel = destRows;
206 destRows
129 convertFromData(const uint8* sourceRows, unsigned sourceBytesPerRow, uint8* destRows, unsigned destBytesPerRow, unsigned rows, unsigned columns) argument
150 convertFromInternalData(const uint8* sourceRows, unsigned sourceBytesPerRow, uint8* destRows, unsigned destBytesPerRow, unsigned rows, unsigned columns, bool premultiplied) argument
179 convertToInternalData(const uint8* sourceRows, unsigned sourceBytesPerRow, uint8* destRows, unsigned destBytesPerRow, unsigned rows, unsigned columns, bool premultiplied) argument
236 unsigned char* destRows = data; local
292 unsigned char* destRows = reinterpret_cast<unsigned char*>(imageData.m_bitmap.Bits()); local
[all...]
/external/webkit/Source/WebCore/platform/graphics/android/
H A DImageBufferAndroid.cpp164 unsigned char* destRows = data + desty * destBytesPerRow + destx * 4; local
170 destRows[basex + 0] = SkColorGetR(c);
171 destRows[basex + 1] = SkColorGetG(c);
172 destRows[basex + 2] = SkColorGetB(c);
173 destRows[basex + 3] = SkColorGetA(c);
176 destRows += destBytesPerRow;
/external/webkit/Source/WebCore/platform/graphics/qt/
H A DImageBufferQt.cpp239 quint32* destRows = reinterpret_cast_ptr<quint32*>(&data[desty * rect.width() * 4 + destx * 4]); local
249 destRows[x] = (0xFF000000
254 destRows[x] = ((alpha << 24)
259 destRows[x] = 0;
261 destRows += rect.width();
269 destRows[x] = ((pixel << 16) & 0xff0000) | ((pixel >> 16) & 0xff) | (pixel & 0xff00ff00);
272 destRows += rect.width();
/external/webkit/Source/WebCore/platform/graphics/cairo/
H A DImageBufferCairo.cpp196 unsigned char* destRows = dataDst + desty * destBytesPerRow + destx * 4; local
207 destRows[basex] = pixelColor.red();
208 destRows[basex + 1] = pixelColor.green();
209 destRows[basex + 2] = pixelColor.blue();
210 destRows[basex + 3] = pixelColor.alpha();
212 destRows += destBytesPerRow;

Completed in 1023 milliseconds