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

  /external/webkit/WebCore/platform/graphics/skia/
ImageBufferSkia.cpp 202 void putImageData(ImageData*& source, const IntRect& sourceRect, const IntPoint& destPoint,
255 putImageData<Unmultiplied>(source, sourceRect, destPoint, *context()->platformContext()->bitmap(), m_size);
260 putImageData<Premultiplied>(source, sourceRect, destPoint, *context()->platformContext()->bitmap(), m_size);
  /external/webkit/WebCore/platform/graphics/wince/
ImageBufferWince.cpp 163 static void putImageData(ImageData* source, const IntRect& sourceRect, const IntPoint& destPoint, SharedBitmap* bitmap)
209 putImageData<false>(source, sourceRect, destPoint, m_data.m_bitmap.get());
214 putImageData<true>(source, sourceRect, destPoint, m_data.m_bitmap.get());
  /external/webkit/WebCore/platform/graphics/cairo/
ImageBufferCairo.cpp 212 void putImageData(ImageData*& source, const IntRect& sourceRect, const IntPoint& destPoint, ImageBufferData& data, const IntSize& size)
271 putImageData<Unmultiplied>(source, sourceRect, destPoint, m_data, m_size);
276 putImageData<Premultiplied>(source, sourceRect, destPoint, m_data, m_size);
  /external/webkit/WebCore/platform/graphics/cg/
ImageBufferCG.cpp 191 void putImageData(ImageData*& source, const IntRect& sourceRect, const IntPoint& destPoint, ImageBufferData& imageData, const IntSize& size)
243 putImageData<Unmultiplied>(source, sourceRect, destPoint, m_data, m_size);
248 putImageData<Premultiplied>(source, sourceRect, destPoint, m_data, m_size);
  /external/webkit/WebCore/platform/graphics/qt/
ImageBufferQt.cpp 196 void putImageData(ImageData*& source, const IntRect& sourceRect, const IntPoint& destPoint, ImageBufferData& data, const IntSize& size)
257 putImageData<Unmultiplied>(source, sourceRect, destPoint, m_data, m_size);
262 putImageData<Premultiplied>(source, sourceRect, destPoint, m_data, m_size);
  /external/webkit/WebCore/html/canvas/
CanvasRenderingContext2D.h 183 void putImageData(ImageData*, float dx, float dy, ExceptionCode&);
184 void putImageData(ImageData*, float dx, float dy, float dirtyX, float dirtyY, float dirtyWidth, float dirtyHeight, ExceptionCode&);
CanvasRenderingContext2D.idl 117 [Custom] void putImageData(/* in ImageData imagedata, in float dx, in float dy [, in float dirtyX, in float dirtyY, in float dirtyWidth, in float dirtyHeight] */);
CanvasRenderingContext2D.cpp     [all...]
  /external/webkit/WebCore/bindings/js/
JSCanvasRenderingContext2DCustom.cpp 364 JSValue JSCanvasRenderingContext2D::putImageData(ExecState* exec, const ArgList& args)
366 // putImageData has two variants
367 // putImageData(ImageData, x, y)
368 // putImageData(ImageData, x, y, dirtyX, dirtyY, dirtyWidth, dirtyHeight)
373 context->putImageData(toImageData(args.at(0)), args.at(1).toFloat(exec), args.at(2).toFloat(exec),
376 context->putImageData(toImageData(args.at(0)), args.at(1).toFloat(exec), args.at(2).toFloat(exec), ec);
  /external/webkit/WebCore/bindings/v8/custom/
V8CanvasRenderingContext2DCustom.cpp 423 INC_STATS("DOM.CanvasRenderingContext2D.putImageData()");
426 // * putImageData(ImageData, x, y)
427 // * putImageData(ImageData, x, y, dirtyX, dirtyY, dirtyWidth, dirtyHeight)
439 // we leave it null, and putImageData() will throw the correct exception
447 context->putImageData(imageData, toFloat(args[1]), toFloat(args[2]), toFloat(args[3]), toFloat(args[4]), toFloat(args[5]), toFloat(args[6]), ec);
449 context->putImageData(imageData, toFloat(args[1]), toFloat(args[2]), ec);

Completed in 157 milliseconds