/external/webkit/Source/WebCore/platform/graphics/haiku/ |
D | ImageBufferHaiku.cpp | 272 static void putImageData(ImageData* source, const IntRect& sourceRect, const IntPoint& destPoint, I… in putImageData() argument 277 if (destPoint.x() > size.width() || destPoint.y() > size.height() in putImageData() 278 || destPoint.x() + sourceRect.width() < 0 in putImageData() 279 || destPoint.y() + sourceRect.height() < 0) { in putImageData() 289 BRect destRect(destPoint.x(), destPoint.y(), sourceRect.width() - 1, sourceRect.height() - 1); in putImageData() 305 …::putUnmultipliedImageData(ImageData* source, const IntRect& sourceRect, const IntPoint& destPoint) in putUnmultipliedImageData() argument 309 putImageData(source, sourceRect, destPoint, m_data, m_size, false); in putUnmultipliedImageData() 312 …:putPremultipliedImageData(ImageData* source, const IntRect& sourceRect, const IntPoint& destPoint) in putPremultipliedImageData() argument 316 putImageData(source, sourceRect, destPoint, m_data, m_size, true); in putPremultipliedImageData()
|
/external/webkit/Source/WebCore/platform/graphics/cairo/ |
D | ImageBufferCairo.cpp | 229 …, const IntSize& sourceSize, const IntRect& sourceRect, const IntPoint& destPoint, ImageBufferData… in putImageData() argument 239 int destx = destPoint.x() + sourceRect.x(); in putImageData() 245 int endx = destPoint.x() + sourceRect.maxX(); in putImageData() 251 int desty = destPoint.y() + sourceRect.y(); in putImageData() 257 int endy = destPoint.y() + sourceRect.maxY(); in putImageData() 286 …ByteArray* source, const IntSize& sourceSize, const IntRect& sourceRect, const IntPoint& destPoint) in putUnmultipliedImageData() argument 288 putImageData<Unmultiplied>(source, sourceSize, sourceRect, destPoint, m_data, m_size); in putUnmultipliedImageData() 291 …ByteArray* source, const IntSize& sourceSize, const IntRect& sourceRect, const IntPoint& destPoint) in putPremultipliedImageData() argument 293 putImageData<Premultiplied>(source, sourceSize, sourceRect, destPoint, m_data, m_size); in putPremultipliedImageData()
|
/external/webkit/Source/WebCore/platform/graphics/skia/ |
D | ImageBufferSkia.cpp | 270 …yteArray*& source, const IntSize& sourceSize, const IntRect& sourceRect, const IntPoint& destPoint, in putImageData() argument 277 int destX = destPoint.x() + sourceRect.x(); in putImageData() 283 int endX = destPoint.x() + sourceRect.maxX(); in putImageData() 289 int destY = destPoint.y() + sourceRect.y(); in putImageData() 295 int endY = destPoint.y() + sourceRect.maxY(); in putImageData() 339 …ByteArray* source, const IntSize& sourceSize, const IntRect& sourceRect, const IntPoint& destPoint) in putUnmultipliedImageData() argument 342 …putImageData<Unmultiplied>(source, sourceSize, sourceRect, destPoint, context()->platformContext()… in putUnmultipliedImageData() 345 …ByteArray* source, const IntSize& sourceSize, const IntRect& sourceRect, const IntPoint& destPoint) in putPremultipliedImageData() argument 348 …putImageData<Premultiplied>(source, sourceSize, sourceRect, destPoint, context()->platformContext(… in putPremultipliedImageData()
|
/external/webkit/Source/WebCore/platform/graphics/qt/ |
D | ImageBufferQt.cpp | 306 …, const IntSize& sourceSize, const IntRect& sourceRect, const IntPoint& destPoint, ImageBufferData… in putImageData() argument 312 int destx = destPoint.x() + sourceRect.x(); in putImageData() 318 int endx = destPoint.x() + sourceRect.maxX(); in putImageData() 324 int desty = destPoint.y() + sourceRect.y(); in putImageData() 330 int endy = destPoint.y() + sourceRect.maxY(); in putImageData() 386 …ByteArray* source, const IntSize& sourceSize, const IntRect& sourceRect, const IntPoint& destPoint) in putUnmultipliedImageData() argument 388 putImageData<Unmultiplied>(source, sourceSize, sourceRect, destPoint, m_data, m_size); in putUnmultipliedImageData() 391 …ByteArray* source, const IntSize& sourceSize, const IntRect& sourceRect, const IntPoint& destPoint) in putPremultipliedImageData() argument 393 putImageData<Premultiplied>(source, sourceSize, sourceRect, destPoint, m_data, m_size); in putPremultipliedImageData()
|
/external/webkit/Source/WebCore/platform/graphics/wince/ |
D | ImageBufferWinCE.cpp | 191 …, const IntSize& sourceSize, const IntRect& sourceRect, const IntPoint& destPoint, SharedBitmap* b… in putImageData() argument 197 IntRect destRect(destPoint, sourceRect.size()); in putImageData() 235 …ByteArray* source, const IntSize& sourceSize, const IntRect& sourceRect, const IntPoint& destPoint) in putUnmultipliedImageData() argument 237 putImageData<false>(source, sourceSize, sourceRect, destPoint, m_data.m_bitmap.get()); in putUnmultipliedImageData() 240 …ByteArray* source, const IntSize& sourceSize, const IntRect& sourceRect, const IntPoint& destPoint) in putPremultipliedImageData() argument 242 putImageData<true>(source, sourceSize, sourceRect, destPoint, m_data.m_bitmap.get()); in putPremultipliedImageData()
|
/external/webkit/Source/WebCore/platform/graphics/android/ |
D | ImageBufferAndroid.cpp | 191 …ByteArray* source, const IntSize& sourceSize, const IntRect& sourceRect, const IntPoint& destPoint) in putUnmultipliedImageData() argument 208 int destx = destPoint.x() + sourceRect.x(); in putUnmultipliedImageData() 214 int endx = destPoint.x() + sourceRect.maxX(); in putUnmultipliedImageData() 220 int desty = destPoint.y() + sourceRect.y(); in putUnmultipliedImageData() 226 int endy = destPoint.y() + sourceRect.maxY(); in putUnmultipliedImageData()
|
/external/webkit/Source/WebCore/platform/graphics/wx/ |
D | ImageBufferWx.cpp | 75 …ByteArray* source, const IntSize& sourceSize, const IntRect& sourceRect, const IntPoint& destPoint) in putUnmultipliedImageData() argument 80 …ByteArray* source, const IntSize& sourceSize, const IntRect& sourceRect, const IntPoint& destPoint) in putPremultipliedImageData() argument
|
/external/webkit/Source/WebCore/platform/graphics/cg/ |
D | ImageBufferDataCG.cpp | 255 …, const IntSize& sourceSize, const IntRect& sourceRect, const IntPoint& destPoint, const IntSize& … in putData() argument 261 int destx = destPoint.x() + sourceRect.x(); in putData() 267 int endx = destPoint.x() + sourceRect.maxX(); in putData() 273 int desty = destPoint.y() + sourceRect.y(); in putData() 279 int endy = destPoint.y() + sourceRect.maxY(); in putData()
|
D | ImageBufferCG.cpp | 268 …ByteArray* source, const IntSize& sourceSize, const IntRect& sourceRect, const IntPoint& destPoint) in putUnmultipliedImageData() argument 272 m_data.putData(source, sourceSize, sourceRect, destPoint, m_size, m_accelerateRendering, true); in putUnmultipliedImageData() 275 …ByteArray* source, const IntSize& sourceSize, const IntRect& sourceRect, const IntPoint& destPoint) in putPremultipliedImageData() argument 279 m_data.putData(source, sourceSize, sourceRect, destPoint, m_size, m_accelerateRendering, false); in putPremultipliedImageData()
|
D | ImageBufferDataCG.h | 58 …, const IntSize& sourceSize, const IntRect& sourceRect, const IntPoint& destPoint, const IntSize& …
|
/external/webkit/Source/WebCore/platform/graphics/ |
D | ImageBuffer.h | 92 …eData(ByteArray*, const IntSize& sourceSize, const IntRect& sourceRect, const IntPoint& destPoint); 93 …eData(ByteArray*, const IntSize& sourceSize, const IntRect& sourceRect, const IntPoint& destPoint);
|
D | GraphicsContext.h | 341 …void drawImage(Image*, ColorSpace styleColorSpace, const IntPoint& destPoint, const IntRect& srcRe… 353 …void drawImageBuffer(ImageBuffer*, ColorSpace styleColorSpace, const IntPoint& destPoint, const In…
|
/external/webkit/Source/WebKit/mac/Plugins/ |
D | WebBaseNetscapePluginView.mm | 900 NSPoint destPoint; 905 destPoint = [[self currentWindow] convertScreenToBase:sourcePointInScreenSpace]; 906 destPoint = [self convertPoint:destPoint fromView:nil]; 910 destPoint = [[self currentWindow] convertScreenToBase:sourcePointInScreenSpace]; 914 destPoint = [[self currentWindow] convertScreenToBase:sourcePointInScreenSpace]; 915 destPoint.y = [[self currentWindow] frame].size.height - destPoint.y; 919 destPoint = sourcePointInScreenSpace; 923 destPoint = sourcePointInScreenSpace; 924 destPoint.y = [[[NSScreen screens] objectAtIndex:0] frame].size.height - destPoint.y; 932 *destX = destPoint.x; [all …]
|
/external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/ |
D | Texture.cpp | 1298 POINT destPoint; in commitRect() local 1299 destPoint.x = xoffset; in commitRect() 1300 destPoint.y = yoffset; in commitRect() 1302 result = getDevice()->UpdateSurface(img->surface, &sourceRect, destLevel, &destPoint); in commitRect() 1835 POINT destPoint; in commitRect() local 1836 destPoint.x = xoffset; in commitRect() 1837 destPoint.y = yoffset; in commitRect() 1839 … HRESULT result = getDevice()->UpdateSurface(img->surface, &sourceRect, destLevel, &destPoint); in commitRect()
|
/external/webkit/Source/WebKit/win/ |
D | FullscreenVideoController.cpp | 550 POINT destPoint = { m_hudPosition.x(), m_hudPosition.y() }; in draw() local 551 …BOOL result = UpdateLayeredWindow(m_hudWindow, 0, &destPoint, &size, bitmapDC, &sourcePoint, 0, &b… in draw()
|