HomeSort by relevance Sort by last modified time
    Searched refs:destRows (Results 1 - 5 of 5) sorted by null

  /external/webkit/Source/WebCore/platform/graphics/cg/
ImageBufferDataCG.cpp 149 unsigned char* destRows = data + desty * destBytesPerRow + destx * 4;
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;
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/haiku/
ImageBufferHaiku.cpp 130 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 += destBytesPerRow
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/android/
ImageBufferAndroid.cpp 174 unsigned char* destRows = data + desty * destBytesPerRow + destx * 4;
180 destRows[basex + 0] = SkColorGetR(c);
181 destRows[basex + 1] = SkColorGetG(c);
182 destRows[basex + 2] = SkColorGetB(c);
183 destRows[basex + 3] = SkColorGetA(c);
186 destRows += destBytesPerRow;
  /external/webkit/Source/WebCore/platform/graphics/qt/
ImageBufferQt.cpp 239 quint32* destRows = reinterpret_cast_ptr<quint32*>(&data[desty * rect.width() * 4 + destx * 4]);
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/
ImageBufferCairo.cpp 196 unsigned char* destRows = dataDst + desty * destBytesPerRow + destx * 4;
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 30 milliseconds