Searched refs:destPoint (Results 1 - 15 of 15) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/cg/
H A DImageBufferDataCG.h58 void putData(ByteArray*& source, const IntSize& sourceSize, const IntRect& sourceRect, const IntPoint& destPoint, const IntSize& size, bool accelerateRendering, bool unmultiplied);
H A DImageBufferDataCG.cpp255 void ImageBufferData::putData(ByteArray*& source, const IntSize& sourceSize, const IntRect& sourceRect, const IntPoint& destPoint, const IntSize& size, bool accelerateRendering, bool unmultiplied) argument
261 int destx = destPoint.x() + sourceRect.x();
267 int endx = destPoint.x() + sourceRect.maxX();
273 int desty = destPoint.y() + sourceRect.y();
279 int endy = destPoint.y() + sourceRect.maxY();
H A DImageBufferCG.cpp268 void ImageBuffer::putUnmultipliedImageData(ByteArray* source, const IntSize& sourceSize, const IntRect& sourceRect, const IntPoint& destPoint) argument
272 m_data.putData(source, sourceSize, sourceRect, destPoint, m_size, m_accelerateRendering, true);
275 void ImageBuffer::putPremultipliedImageData(ByteArray* source, const IntSize& sourceSize, const IntRect& sourceRect, const IntPoint& destPoint) argument
279 m_data.putData(source, sourceSize, sourceRect, destPoint, m_size, m_accelerateRendering, false);
/external/webkit/Source/WebCore/platform/graphics/haiku/
H A DImageBufferHaiku.cpp272 static void putImageData(ImageData* source, const IntRect& sourceRect, const IntPoint& destPoint, ImageBufferData& imageData, const IntSize& size, bool premultiplied) argument
277 if (destPoint.x() > size.width() || destPoint.y() > size.height()
278 || destPoint.x() + sourceRect.width() < 0
279 || destPoint.y() + sourceRect.height() < 0) {
289 BRect destRect(destPoint.x(), destPoint.y(), sourceRect.width() - 1, sourceRect.height() - 1);
305 void ImageBuffer::putUnmultipliedImageData(ImageData* source, const IntRect& sourceRect, const IntPoint& destPoint) argument
309 putImageData(source, sourceRect, destPoint, m_data, m_size, false);
312 void ImageBuffer::putPremultipliedImageData(ImageData* source, const IntRect& sourceRect, const IntPoint& destPoint) argument
[all...]
/external/webkit/Source/WebCore/platform/graphics/wx/
H A DImageBufferWx.cpp75 void ImageBuffer::putUnmultipliedImageData(ByteArray* source, const IntSize& sourceSize, const IntRect& sourceRect, const IntPoint& destPoint) argument
80 void ImageBuffer::putPremultipliedImageData(ByteArray* source, const IntSize& sourceSize, const IntRect& sourceRect, const IntPoint& destPoint) argument
/external/webkit/Source/WebCore/platform/graphics/cairo/
H A DImageBufferCairo.cpp229 void putImageData(ByteArray*& source, const IntSize& sourceSize, const IntRect& sourceRect, const IntPoint& destPoint, ImageBufferData& data, const IntSize& size) argument
239 int destx = destPoint.x() + sourceRect.x();
245 int endx = destPoint.x() + sourceRect.maxX();
251 int desty = destPoint.y() + sourceRect.y();
257 int endy = destPoint.y() + sourceRect.maxY();
286 void ImageBuffer::putUnmultipliedImageData(ByteArray* source, const IntSize& sourceSize, const IntRect& sourceRect, const IntPoint& destPoint) argument
288 putImageData<Unmultiplied>(source, sourceSize, sourceRect, destPoint, m_data, m_size);
291 void ImageBuffer::putPremultipliedImageData(ByteArray* source, const IntSize& sourceSize, const IntRect& sourceRect, const IntPoint& destPoint) argument
293 putImageData<Premultiplied>(source, sourceSize, sourceRect, destPoint, m_data, m_size);
/external/webkit/Source/WebCore/platform/graphics/qt/
H A DImageBufferQt.cpp306 void putImageData(ByteArray*& source, const IntSize& sourceSize, const IntRect& sourceRect, const IntPoint& destPoint, ImageBufferData& data, const IntSize& size) argument
312 int destx = destPoint.x() + sourceRect.x();
318 int endx = destPoint.x() + sourceRect.maxX();
324 int desty = destPoint.y() + sourceRect.y();
330 int endy = destPoint.y() + sourceRect.maxY();
386 void ImageBuffer::putUnmultipliedImageData(ByteArray* source, const IntSize& sourceSize, const IntRect& sourceRect, const IntPoint& destPoint) argument
388 putImageData<Unmultiplied>(source, sourceSize, sourceRect, destPoint, m_data, m_size);
391 void ImageBuffer::putPremultipliedImageData(ByteArray* source, const IntSize& sourceSize, const IntRect& sourceRect, const IntPoint& destPoint) argument
393 putImageData<Premultiplied>(source, sourceSize, sourceRect, destPoint, m_data, m_size);
/external/webkit/Source/WebCore/platform/graphics/skia/
H A DImageBufferSkia.cpp270 void putImageData(ByteArray*& source, const IntSize& sourceSize, const IntRect& sourceRect, const IntPoint& destPoint, argument
277 int destX = destPoint.x() + sourceRect.x();
283 int endX = destPoint.x() + sourceRect.maxX();
289 int destY = destPoint.y() + sourceRect.y();
295 int endY = destPoint.y() + sourceRect.maxY();
339 void ImageBuffer::putUnmultipliedImageData(ByteArray* source, const IntSize& sourceSize, const IntRect& sourceRect, const IntPoint& destPoint)
342 putImageData<Unmultiplied>(source, sourceSize, sourceRect, destPoint, context()->platformContext()->canvas()->getDevice(), m_size);
345 void ImageBuffer::putPremultipliedImageData(ByteArray* source, const IntSize& sourceSize, const IntRect& sourceRect, const IntPoint& destPoint) argument
348 putImageData<Premultiplied>(source, sourceSize, sourceRect, destPoint, context()->platformContext()->canvas()->getDevice(), m_size);
/external/webkit/Source/WebCore/platform/graphics/android/
H A DImageBufferAndroid.cpp191 void ImageBuffer::putUnmultipliedImageData(ByteArray* source, const IntSize& sourceSize, const IntRect& sourceRect, const IntPoint& destPoint) argument
208 int destx = destPoint.x() + sourceRect.x();
214 int endx = destPoint.x() + sourceRect.maxX();
220 int desty = destPoint.y() + sourceRect.y();
226 int endy = destPoint.y() + sourceRect.maxY();
/external/webkit/Source/WebCore/platform/graphics/wince/
H A DImageBufferWinCE.cpp191 static void putImageData(ByteArray* source, const IntSize& sourceSize, const IntRect& sourceRect, const IntPoint& destPoint, SharedBitmap* bitmap) argument
197 IntRect destRect(destPoint, sourceRect.size());
235 void ImageBuffer::putUnmultipliedImageData(ByteArray* source, const IntSize& sourceSize, const IntRect& sourceRect, const IntPoint& destPoint) argument
237 putImageData<false>(source, sourceSize, sourceRect, destPoint, m_data.m_bitmap.get());
240 void ImageBuffer::putPremultipliedImageData(ByteArray* source, const IntSize& sourceSize, const IntRect& sourceRect, const IntPoint& destPoint) argument
242 putImageData<true>(source, sourceSize, sourceRect, destPoint, m_data.m_bitmap.get());
/external/webkit/Source/WebCore/platform/graphics/
H A DImageBuffer.h92 void putUnmultipliedImageData(ByteArray*, const IntSize& sourceSize, const IntRect& sourceRect, const IntPoint& destPoint);
93 void putPremultipliedImageData(ByteArray*, const IntSize& sourceSize, const IntRect& sourceRect, const IntPoint& destPoint);
H A DGraphicsContext.h341 void drawImage(Image*, ColorSpace styleColorSpace, const IntPoint& destPoint, const IntRect& srcRect, CompositeOperator = CompositeSourceOver);
353 void drawImageBuffer(ImageBuffer*, ColorSpace styleColorSpace, const IntPoint& destPoint, const IntRect& srcRect, CompositeOperator = CompositeSourceOver);
/external/webkit/Source/WebKit/mac/Plugins/
H A DWebBaseNetscapePluginView.mm900 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
[all...]
/external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
H A DTexture.cpp1298 POINT destPoint; local
1299 destPoint.x = xoffset;
1300 destPoint.y = yoffset;
1302 result = getDevice()->UpdateSurface(img->surface, &sourceRect, destLevel, &destPoint);
1835 POINT destPoint; local
1836 destPoint.x = xoffset;
1837 destPoint.y = yoffset;
1839 HRESULT result = getDevice()->UpdateSurface(img->surface, &sourceRect, destLevel, &destPoint);
/external/webkit/Source/WebKit/win/
H A DFullscreenVideoController.cpp550 POINT destPoint = { m_hudPosition.x(), m_hudPosition.y() }; local
551 BOOL result = UpdateLayeredWindow(m_hudWindow, 0, &destPoint, &size, bitmapDC, &sourcePoint, 0, &blendFunction, ULW_ALPHA);

Completed in 462 milliseconds