/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d9/ |
D | Blit9.cpp | 212 bool Blit9::copy(gl::Framebuffer *framebuffer, const RECT &sourceRect, GLenum destFormat, GLint xof… in copy() argument 240 result = copy(source, sourceRect, destFormat, xoffset, yoffset, destSurface); in copy() 248 bool Blit9::copy(gl::Framebuffer *framebuffer, const RECT &sourceRect, GLenum destFormat, GLint xof… in copy() argument 276 result = copy(source, sourceRect, destFormat, xoffset, yoffset, destSurface); in copy() 284 bool Blit9::copy(IDirect3DSurface9 *source, const RECT &sourceRect, GLenum destFormat, GLint xoffse… in copy() argument 301 …Rect = {xoffset, yoffset, xoffset + (sourceRect.right - sourceRect.left), yoffset + (sourceRect.bo… in copy() 302 HRESULT result = device->StretchRect(source, &sourceRect, dest, &destRect, D3DTEXF_POINT); in copy() 312 return formatConvert(source, sourceRect, destFormat, xoffset, yoffset, dest); in copy() 317 bool Blit9::formatConvert(IDirect3DSurface9 *source, const RECT &sourceRect, GLenum destFormat, GLi… in formatConvert() argument 319 IDirect3DTexture9 *texture = copySurfaceToTexture(source, sourceRect); in formatConvert() [all …]
|
D | Blit9.h | 33 …bool copy(gl::Framebuffer *framebuffer, const RECT &sourceRect, GLenum destFormat, GLint xoffset, … 34 …bool copy(gl::Framebuffer *framebuffer, const RECT &sourceRect, GLenum destFormat, GLint xoffset, … 39 …bool formatConvert(IDirect3DSurface9 *source, const RECT &sourceRect, GLenum destFormat, GLint xof… 55 …bool copy(IDirect3DSurface9 *source, const RECT &sourceRect, GLenum destFormat, GLint xoffset, GLi… 56 IDirect3DTexture9 *copySurfaceToTexture(IDirect3DSurface9 *surface, const RECT &sourceRect); 57 void setViewport(const RECT &sourceRect, GLint xoffset, GLint yoffset);
|
D | Renderer9.h | 179 …virtual bool copyImage(gl::Framebuffer *framebuffer, const gl::Rectangle &sourceRect, GLenum destF… 181 …virtual bool copyImage(gl::Framebuffer *framebuffer, const gl::Rectangle &sourceRect, GLenum destF… 183 …virtual bool copyImage(gl::Framebuffer *framebuffer, const gl::Rectangle &sourceRect, GLenum destF… 185 …virtual bool copyImage(gl::Framebuffer *framebuffer, const gl::Rectangle &sourceRect, GLenum destF…
|
D | Renderer9.cpp | 2889 bool Renderer9::copyImage(gl::Framebuffer *framebuffer, const gl::Rectangle &sourceRect, GLenum des… in copyImage() argument 2893 rect.left = sourceRect.x; in copyImage() 2894 rect.top = sourceRect.y; in copyImage() 2895 rect.right = sourceRect.x + sourceRect.width; in copyImage() 2896 rect.bottom = sourceRect.y + sourceRect.height; in copyImage() 2901 bool Renderer9::copyImage(gl::Framebuffer *framebuffer, const gl::Rectangle &sourceRect, GLenum des… in copyImage() argument 2905 rect.left = sourceRect.x; in copyImage() 2906 rect.top = sourceRect.y; in copyImage() 2907 rect.right = sourceRect.x + sourceRect.width; in copyImage() 2908 rect.bottom = sourceRect.y + sourceRect.height; in copyImage() [all …]
|
D | Image9.cpp | 498 RECT sourceRect = {x, y, x + width, y + height}; in copy() local 502 result = renderTargetData->LockRect(&sourceLock, &sourceRect, 0); in copy()
|
/external/chromium_org/third_party/WebKit/Source/platform/graphics/ |
D | ImageBuffer.cpp | 346 …, Uint8ClampedArray* source, const IntSize& sourceSize, const IntRect& sourceRect, const IntPoint&… in putByteArray() argument 351 ASSERT(sourceRect.width() > 0); in putByteArray() 352 ASSERT(sourceRect.height() > 0); in putByteArray() 354 int originX = sourceRect.x(); in putByteArray() 355 int destX = destPoint.x() + sourceRect.x(); in putByteArray() 359 ASSERT(originX < sourceRect.maxX()); in putByteArray() 361 int originY = sourceRect.y(); in putByteArray() 362 int destY = destPoint.y() + sourceRect.y(); in putByteArray() 366 ASSERT(originY < sourceRect.maxY()); in putByteArray() 371 …SkImageInfo info = SkImageInfo::Make(sourceRect.width(), sourceRect.height(), kRGBA_8888_SkColorTy… in putByteArray()
|
D | ImageBuffer.h | 106 …tiplied, Uint8ClampedArray*, const IntSize& sourceSize, const IntRect& sourceRect, const IntPoint&…
|
/external/chromium_org/third_party/angle/src/libGLESv2/ |
D | Texture.cpp | 688 gl::Rectangle sourceRect; in copyImage() local 689 sourceRect.x = x; in copyImage() 690 sourceRect.width = width; in copyImage() 691 sourceRect.y = y; in copyImage() 692 sourceRect.height = height; in copyImage() 694 mRenderer->copyImage(source, sourceRect, format, 0, 0, mTexStorage, level); in copyImage() 720 gl::Rectangle sourceRect; in copySubImage() local 721 sourceRect.x = x; in copySubImage() 722 sourceRect.width = width; in copySubImage() 723 sourceRect.y = y; in copySubImage() [all …]
|
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d11/ |
D | Renderer11.cpp | 2633 bool Renderer11::copyImage(gl::Framebuffer *framebuffer, const gl::Rectangle &sourceRect, GLenum de… in copyImage() argument 2678 gl::Box sourceArea(sourceRect.x, sourceRect.y, 0, sourceRect.width, sourceRect.height, 1); in copyImage() 2681 gl::Box destArea(xoffset, yoffset, 0, sourceRect.width, sourceRect.height, 1); in copyImage() 2694 bool Renderer11::copyImage(gl::Framebuffer *framebuffer, const gl::Rectangle &sourceRect, GLenum de… in copyImage() argument 2739 gl::Box sourceArea(sourceRect.x, sourceRect.y, 0, sourceRect.width, sourceRect.height, 1); in copyImage() 2742 gl::Box destArea(xoffset, yoffset, 0, sourceRect.width, sourceRect.height, 1); in copyImage() 2755 bool Renderer11::copyImage(gl::Framebuffer *framebuffer, const gl::Rectangle &sourceRect, GLenum de… in copyImage() argument 2800 gl::Box sourceArea(sourceRect.x, sourceRect.y, 0, sourceRect.width, sourceRect.height, 1); in copyImage() 2803 gl::Box destArea(xoffset, yoffset, 0, sourceRect.width, sourceRect.height, 1); in copyImage() 2816 bool Renderer11::copyImage(gl::Framebuffer *framebuffer, const gl::Rectangle &sourceRect, GLenum de… in copyImage() argument [all …]
|
D | Renderer11.h | 175 …virtual bool copyImage(gl::Framebuffer *framebuffer, const gl::Rectangle &sourceRect, GLenum destF… 177 …virtual bool copyImage(gl::Framebuffer *framebuffer, const gl::Rectangle &sourceRect, GLenum destF… 179 …virtual bool copyImage(gl::Framebuffer *framebuffer, const gl::Rectangle &sourceRect, GLenum destF… 181 …virtual bool copyImage(gl::Framebuffer *framebuffer, const gl::Rectangle &sourceRect, GLenum destF…
|
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/ |
D | Renderer.h | 215 …virtual bool copyImage(gl::Framebuffer *framebuffer, const gl::Rectangle &sourceRect, GLenum destF… 217 …virtual bool copyImage(gl::Framebuffer *framebuffer, const gl::Rectangle &sourceRect, GLenum destF… 219 …virtual bool copyImage(gl::Framebuffer *framebuffer, const gl::Rectangle &sourceRect, GLenum destF… 221 …virtual bool copyImage(gl::Framebuffer *framebuffer, const gl::Rectangle &sourceRect, GLenum destF…
|
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/ |
D | FilterEffect.cpp | 117 FloatRect sourceRect = mapRect(destRect, false); in getSourceRect() local 132 result = m_inputEffects.at(0)->getSourceRect(sourceRect, sourceClipRect); in getSourceRect() 134 result.unite(m_inputEffects.at(i)->getSourceRect(sourceRect, sourceClipRect)); in getSourceRect() 136 result = sourceRect; in getSourceRect()
|
D | FEComposite.cpp | 335 FloatRect sourceRect(IntPoint(destinationRect.x() - in->absolutePaintRect().x(), in applySoftware() local 342 FloatRect(destinationPoint, imageBuffer->size()), &sourceRect, CompositeSourceIn); in applySoftware()
|
/external/qemu/distrib/sdl-1.2.15/src/video/symbian/EKA2/ |
D | dsa_old.cpp | 635 TRect sourceRect = aRect; 640 Rotate(sourceRect); 644 …if(iSourceMode != DisplayMode() || targetRect != sourceRect || targetRect != updateRect || ((iSta… 646 sourceRect.Intersection(targetRect); //so source always smaller or equal than target 648 ClipCopy(target, aBits, updateRect, sourceRect);
|
D | dsa.cpp | 1070 TRect sourceRect = aRect; 1078 Rotate(sourceRect); 1082 …if(iSourceMode != DisplayMode() || targetRect != sourceRect || targetRect != updateRect || ((iSta… 1084 sourceRect.Intersection(targetRect); //so source always smaller or equal than target 1086 ClipCopy(target, aBits, updateRect, sourceRect);
|
D | dsa_new.cpp | 1006 TRect sourceRect = aRect; 1011 Rotate(sourceRect); 1015 …if(iSourceMode != DisplayMode() || targetRect != sourceRect || targetRect != updateRect || ((iSta… 1017 sourceRect.Intersection(targetRect); //so source always smaller or equal than target 1019 ClipCopy(target, aBits, updateRect, sourceRect.iTl);
|
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/ |
D | CanvasRenderingContext2D.cpp | 1867 IntRect sourceRect(destRect); in putImageData() local 1868 sourceRect.move(-destOffset); in putImageData() 1870 …ay(Unmultiplied, data->data(), IntSize(data->width(), data->height()), sourceRect, IntPoint(destOf… in putImageData()
|