Searched refs:sourceRect (Results 1 - 20 of 20) sorted by relevance

/external/chromium_org/third_party/angle/src/libGLESv2/renderer/
H A DBlit.h32 // sourceRect, xoffset, yoffset are in D3D coordinates (0,0 in upper-left)
33 bool copy(gl::Framebuffer *framebuffer, const RECT &sourceRect, GLenum destFormat, GLint xoffset, GLint yoffset, TextureStorageInterface2D *storage, GLint level);
34 bool copy(gl::Framebuffer *framebuffer, const RECT &sourceRect, GLenum destFormat, GLint xoffset, GLint yoffset, TextureStorageInterfaceCube *storage, GLenum target, GLint level);
37 // sourceRect, xoffset, yoffset are in D3D coordinates (0,0 in upper-left)
39 bool formatConvert(IDirect3DSurface9 *source, const RECT &sourceRect, GLenum destFormat, GLint xoffset, GLint yoffset, IDirect3DSurface9 *dest);
55 bool copy(IDirect3DSurface9 *source, const RECT &sourceRect, GLenum destFormat, GLint xoffset, GLint yoffset, IDirect3DSurface9 *dest);
56 IDirect3DTexture9 *copySurfaceToTexture(IDirect3DSurface9 *surface, const RECT &sourceRect);
57 void setViewport(const RECT &sourceRect, GLint xoffset, GLint yoffset);
H A DBlit.cpp214 bool Blit::copy(gl::Framebuffer *framebuffer, const RECT &sourceRect, GLenum destFormat, GLint xoffset, GLint yoffset, TextureStorageInterface2D *storage, GLint level) argument
242 result = copy(source, sourceRect, destFormat, xoffset, yoffset, destSurface);
250 bool Blit::copy(gl::Framebuffer *framebuffer, const RECT &sourceRect, GLenum destFormat, GLint xoffset, GLint yoffset, TextureStorageInterfaceCube *storage, GLenum target, GLint level) argument
278 result = copy(source, sourceRect, destFormat, xoffset, yoffset, destSurface);
286 bool Blit::copy(IDirect3DSurface9 *source, const RECT &sourceRect, GLenum destFormat, GLint xoffset, GLint yoffset, IDirect3DSurface9 *dest) argument
303 RECT destRect = {xoffset, yoffset, xoffset + (sourceRect.right - sourceRect.left), yoffset + (sourceRect.bottom - sourceRect.top)};
304 HRESULT result = device->StretchRect(source, &sourceRect, des
319 formatConvert(IDirect3DSurface9 *source, const RECT &sourceRect, GLenum destFormat, GLint xoffset, GLint yoffset, IDirect3DSurface9 *dest) argument
412 copySurfaceToTexture(IDirect3DSurface9 *surface, const RECT &sourceRect) argument
459 setViewport(const RECT &sourceRect, GLint xoffset, GLint yoffset) argument
[all...]
H A DRenderer.h200 virtual bool copyImage(gl::Framebuffer *framebuffer, const gl::Rectangle &sourceRect, GLenum destFormat,
202 virtual bool copyImage(gl::Framebuffer *framebuffer, const gl::Rectangle &sourceRect, GLenum destFormat,
H A DRenderer11.h139 virtual bool copyImage(gl::Framebuffer *framebuffer, const gl::Rectangle &sourceRect, GLenum destFormat,
141 virtual bool copyImage(gl::Framebuffer *framebuffer, const gl::Rectangle &sourceRect, GLenum destFormat,
H A DRenderer9.h157 virtual bool copyImage(gl::Framebuffer *framebuffer, const gl::Rectangle &sourceRect, GLenum destFormat,
159 virtual bool copyImage(gl::Framebuffer *framebuffer, const gl::Rectangle &sourceRect, GLenum destFormat,
H A DRenderer9.cpp2614 bool Renderer9::copyImage(gl::Framebuffer *framebuffer, const gl::Rectangle &sourceRect, GLenum destFormat, argument
2618 rect.left = sourceRect.x;
2619 rect.top = sourceRect.y;
2620 rect.right = sourceRect.x + sourceRect.width;
2621 rect.bottom = sourceRect.y + sourceRect.height;
2626 bool Renderer9::copyImage(gl::Framebuffer *framebuffer, const gl::Rectangle &sourceRect, GLenum destFormat, argument
2630 rect.left = sourceRect.x;
2631 rect.top = sourceRect
[all...]
H A DImage9.cpp530 RECT sourceRect = {x, y, x + width, y + height}; local
534 result = renderTargetData->LockRect(&sourceLock, &sourceRect, 0);
H A DRenderer11.cpp2442 bool Renderer11::copyImage(gl::Framebuffer *framebuffer, const gl::Rectangle &sourceRect, GLenum destFormat, argument
2490 destRect.width = sourceRect.width;
2491 destRect.height = sourceRect.height;
2493 bool ret = copyTexture(source, sourceRect, sourceRenderTarget->getWidth(), sourceRenderTarget->getHeight(),
2499 bool Renderer11::copyImage(gl::Framebuffer *framebuffer, const gl::Rectangle &sourceRect, GLenum destFormat, argument
2547 destRect.width = sourceRect.width;
2548 destRect.height = sourceRect.height;
2550 bool ret = copyTexture(source, sourceRect, sourceRenderTarget->getWidth(), sourceRenderTarget->getHeight(),
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DImageBuffer.cpp348 void ImageBuffer::putByteArray(Multiply multiplied, Uint8ClampedArray* source, const IntSize& sourceSize, const IntRect& sourceRect, const IntPoint& destPoint) argument
353 ASSERT(sourceRect.width() > 0);
354 ASSERT(sourceRect.height() > 0);
356 int originX = sourceRect.x();
357 int destX = destPoint.x() + sourceRect.x();
361 ASSERT(originX < sourceRect.maxX());
363 int endX = destPoint.x() + sourceRect.maxX();
368 int originY = sourceRect.y();
369 int destY = destPoint.y() + sourceRect.y();
373 ASSERT(originY < sourceRect
[all...]
H A DImageBuffer.h96 void putByteArray(Multiply multiplied, Uint8ClampedArray*, const IntSize& sourceSize, const IntRect& sourceRect, const IntPoint& destPoint);
/external/chromium_org/third_party/angle/src/libGLESv2/
H A DTexture.cpp514 gl::Rectangle sourceRect; local
515 sourceRect.x = x;
516 sourceRect.width = width;
517 sourceRect.y = y;
518 sourceRect.height = height;
520 mRenderer->copyImage(source, sourceRect, format, 0, 0, mTexStorage, level);
548 gl::Rectangle sourceRect; local
549 sourceRect.x = x;
550 sourceRect.width = width;
551 sourceRect
1303 gl::Rectangle sourceRect; local
1341 gl::Rectangle sourceRect; local
[all...]
H A DContext.cpp2716 Rectangle sourceRect; local
2721 sourceRect.x = srcX0;
2723 sourceRect.width = srcX1 - srcX0;
2728 sourceRect.x = srcX1;
2730 sourceRect.width = srcX0 - srcX1;
2736 sourceRect.height = srcY1 - srcY0;
2738 sourceRect.y = srcY0;
2743 sourceRect.height = srcY0 - srcY1;
2745 sourceRect.y = srcY1;
2749 Rectangle sourceScissoredRect = sourceRect;
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/graphics/win/
H A DTransparencyWin.cpp456 SkRect sourceRect = SkRect::MakeWH( local
459 m_destContext->drawBitmapRect(*bitmap, &sourceRect, destRect, &paint);
492 SkRect sourceRect = SkRect::MakeWH( local
495 m_destContext->drawBitmapRect(bitmap, &sourceRect, destRect, 0);
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
H A DFilterEffect.cpp94 FloatRect sourceRect = mapRect(destRect, false); local
109 result = m_inputEffects.at(0)->getSourceRect(sourceRect, sourceClipRect);
111 result.unite(m_inputEffects.at(i)->getSourceRect(sourceRect, sourceClipRect));
113 result = sourceRect;
H A DFEComposite.cpp299 IntRect sourceRect(IntPoint(destinationRect.x() - in->absolutePaintRect().x(),
304 filterContext->drawImageBuffer(imageBuffer, destinationPoint, sourceRect, CompositeSourceIn);
/external/qemu/distrib/sdl-1.2.15/src/video/symbian/EKA2/
H A Ddsa_old.cpp635 TRect sourceRect = aRect; local
640 Rotate(sourceRect);
644 if(iSourceMode != DisplayMode() || targetRect != sourceRect || targetRect != updateRect || ((iStateFlags & EOrientationFlags) != 0))
646 sourceRect.Intersection(targetRect); //so source always smaller or equal than target
648 ClipCopy(target, aBits, updateRect, sourceRect);
H A Ddsa.cpp1070 TRect sourceRect = aRect; local
1078 Rotate(sourceRect);
1082 if(iSourceMode != DisplayMode() || targetRect != sourceRect || targetRect != updateRect || ((iStateFlags & EOrientationFlags) != 0))
1084 sourceRect.Intersection(targetRect); //so source always smaller or equal than target
1086 ClipCopy(target, aBits, updateRect, sourceRect);
H A Ddsa_new.cpp955 TRect sourceRect = aRect;
963 Rotate(sourceRect);
967 if(iSourceMode != DisplayMode() || targetRect != sourceRect || targetRect != updateRect || ((iStateFlags & EOrientationFlags) != 0))
969 sourceRect.Intersection(targetRect); //so source always smaller or equal than target
971 ClipCopy(target, aBits, updateRect, sourceRect);
1006 TRect sourceRect = aRect; local
1011 Rotate(sourceRect);
1015 if(iSourceMode != DisplayMode() || targetRect != sourceRect || targetRect != updateRect || ((iStateFlags & EOrientationFlags) != 0))
1017 sourceRect.Intersection(targetRect); //so source always smaller or equal than target
1019 ClipCopy(target, aBits, updateRect, sourceRect
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
H A DCanvasRenderingContext2D.cpp1968 IntRect sourceRect(destRect);
1969 sourceRect.move(-destOffset);
1971 buffer->putByteArray(Unmultiplied, data->data(), IntSize(data->width(), data->height()), sourceRect, IntPoint(destOffset));
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 423 milliseconds