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

  /external/webkit/Source/WebCore/platform/graphics/cg/
ImageBufferDataCG.h 58 void putData(ByteArray*& source, const IntSize& sourceSize, const IntRect& sourceRect, const IntPoint& destPoint, const IntSize& size, bool accelerateRendering, bool unmultiplied);
ImageBufferDataCG.cpp 255 void ImageBufferData::putData(ByteArray*& source, const IntSize& sourceSize, const IntRect& sourceRect, const IntPoint& destPoint, const IntSize& size, bool accelerateRendering, bool unmultiplied)
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();
ImageBufferCG.cpp 268 void ImageBuffer::putUnmultipliedImageData(ByteArray* source, const IntSize& sourceSize, const IntRect& sourceRect, const IntPoint& destPoint)
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)
279 m_data.putData(source, sourceSize, sourceRect, destPoint, m_size, m_accelerateRendering, false);
  /external/webkit/Source/WebCore/platform/graphics/haiku/
ImageBufferHaiku.cpp 272 static void putImageData(ImageData* source, const IntRect& sourceRect, const IntPoint& destPoint, ImageBufferData& imageData, const IntSize& size, bool premultiplied)
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)
309 putImageData(source, sourceRect, destPoint, m_data, m_size, false);
312 void ImageBuffer::putPremultipliedImageData(ImageData* source, const IntRect& sourceRect, const IntPoint& destPoint)
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/wx/
ImageBufferWx.cpp 75 void ImageBuffer::putUnmultipliedImageData(ByteArray* source, const IntSize& sourceSize, const IntRect& sourceRect, const IntPoint& destPoint)
80 void ImageBuffer::putPremultipliedImageData(ByteArray* source, const IntSize& sourceSize, const IntRect& sourceRect, const IntPoint& destPoint)
  /external/webkit/Source/WebCore/platform/graphics/cairo/
ImageBufferCairo.cpp 229 void putImageData(ByteArray*& source, const IntSize& sourceSize, const IntRect& sourceRect, const IntPoint& destPoint, ImageBufferData& data, const IntSize& size)
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)
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)
293 putImageData<Premultiplied>(source, sourceSize, sourceRect, destPoint, m_data, m_size);
  /external/webkit/Source/WebCore/platform/graphics/qt/
ImageBufferQt.cpp 306 void putImageData(ByteArray*& source, const IntSize& sourceSize, const IntRect& sourceRect, const IntPoint& destPoint, ImageBufferData& data, const IntSize& size)
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)
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)
393 putImageData<Premultiplied>(source, sourceSize, sourceRect, destPoint, m_data, m_size);
  /external/webkit/Source/WebCore/platform/graphics/skia/
ImageBufferSkia.cpp 270 void putImageData(ByteArray*& source, const IntSize& sourceSize, const IntRect& sourceRect, const IntPoint& destPoint,
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)
348 putImageData<Premultiplied>(source, sourceSize, sourceRect, destPoint, context()->platformContext()->canvas()->getDevice(), m_size);
  /external/webkit/Source/WebCore/platform/graphics/android/
ImageBufferAndroid.cpp 181 void ImageBuffer::putUnmultipliedImageData(ByteArray* source, const IntSize& sourceSize, const IntRect& sourceRect, const IntPoint& destPoint)
198 int destx = destPoint.x() + sourceRect.x();
204 int endx = destPoint.x() + sourceRect.maxX();
210 int desty = destPoint.y() + sourceRect.y();
216 int endy = destPoint.y() + sourceRect.maxY();
  /external/webkit/Source/WebCore/platform/graphics/wince/
ImageBufferWinCE.cpp 191 static void putImageData(ByteArray* source, const IntSize& sourceSize, const IntRect& sourceRect, const IntPoint& destPoint, SharedBitmap* bitmap)
197 IntRect destRect(destPoint, sourceRect.size());
235 void ImageBuffer::putUnmultipliedImageData(ByteArray* source, const IntSize& sourceSize, const IntRect& sourceRect, const IntPoint& destPoint)
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)
242 putImageData<true>(source, sourceSize, sourceRect, destPoint, m_data.m_bitmap.get());
  /external/webkit/Source/WebCore/platform/graphics/
ImageBuffer.h 92 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);
GraphicsContext.h 341 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/
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
    [all...]
  /external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
Texture.cpp     [all...]
  /external/webkit/Source/WebKit/win/
FullscreenVideoController.cpp 550 POINT destPoint = { m_hudPosition.x(), m_hudPosition.y() };
551 BOOL result = UpdateLayeredWindow(m_hudWindow, 0, &destPoint, &size, bitmapDC, &sourcePoint, 0, &blendFunction, ULW_ALPHA);

Completed in 294 milliseconds