Searched defs:sourceRect (Results 1 - 10 of 10) sorted by relevance

/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d9/
H A DBlit9.cpp211 bool Blit9::copy2D(gl::Framebuffer *framebuffer, const RECT &sourceRect, GLenum destFormat, GLint xoffset, GLint yoffset, TextureStorage *storage, GLint level) argument
239 result = copy(source, sourceRect, destFormat, xoffset, yoffset, destSurface);
247 bool Blit9::copyCube(gl::Framebuffer *framebuffer, const RECT &sourceRect, GLenum destFormat, GLint xoffset, GLint yoffset, TextureStorage *storage, GLenum target, GLint level) argument
275 result = copy(source, sourceRect, destFormat, xoffset, yoffset, destSurface);
283 bool Blit9::copy(IDirect3DSurface9 *source, const RECT &sourceRect, GLenum destFormat, GLint xoffset, GLint yoffset, IDirect3DSurface9 *dest) argument
300 RECT destRect = {xoffset, yoffset, xoffset + (sourceRect.right - sourceRect.left), yoffset + (sourceRect.bottom - sourceRect.top)};
301 HRESULT result = device->StretchRect(source, &sourceRect, des
316 formatConvert(IDirect3DSurface9 *source, const RECT &sourceRect, GLenum destFormat, GLint xoffset, GLint yoffset, IDirect3DSurface9 *dest) argument
469 copySurfaceToTexture(IDirect3DSurface9 *surface, const RECT &sourceRect) argument
516 setViewport(const RECT &sourceRect, GLint xoffset, GLint yoffset) argument
[all...]
H A DImage9.cpp504 RECT sourceRect = {x, y, x + width, y + height}; local
508 result = renderTargetData->LockRect(&sourceLock, &sourceRect, 0);
H A DRenderer9.cpp2431 bool Renderer9::copyImage2D(gl::Framebuffer *framebuffer, const gl::Rectangle &sourceRect, GLenum destFormat, argument
2435 rect.left = sourceRect.x;
2436 rect.top = sourceRect.y;
2437 rect.right = sourceRect.x + sourceRect.width;
2438 rect.bottom = sourceRect.y + sourceRect.height;
2443 bool Renderer9::copyImageCube(gl::Framebuffer *framebuffer, const gl::Rectangle &sourceRect, GLenum destFormat, argument
2447 rect.left = sourceRect.x;
2448 rect.top = sourceRect
2455 copyImage3D(gl::Framebuffer *framebuffer, const gl::Rectangle &sourceRect, GLenum destFormat, GLint xoffset, GLint yoffset, GLint zOffset, TextureStorage *storage, GLint level) argument
2463 copyImage2DArray(gl::Framebuffer *framebuffer, const gl::Rectangle &sourceRect, GLenum destFormat, GLint xoffset, GLint yoffset, GLint zOffset, TextureStorage *storage, GLint level) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DImageBuffer.cpp364 void ImageBuffer::putByteArray(Multiply multiplied, Uint8ClampedArray* source, const IntSize& sourceSize, const IntRect& sourceRect, const IntPoint& destPoint) argument
369 ASSERT(sourceRect.width() > 0);
370 ASSERT(sourceRect.height() > 0);
372 int originX = sourceRect.x();
373 int destX = destPoint.x() + sourceRect.x();
377 ASSERT(originX < sourceRect.maxX());
379 int originY = sourceRect.y();
380 int destY = destPoint.y() + sourceRect.y();
384 ASSERT(originY < sourceRect.maxY());
389 SkImageInfo info = SkImageInfo::Make(sourceRect
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
H A DFilterEffect.cpp117 FloatRect sourceRect = mapRect(destRect, false); local
132 result = m_inputEffects.at(0)->getSourceRect(sourceRect, sourceClipRect);
134 result.unite(m_inputEffects.at(i)->getSourceRect(sourceRect, sourceClipRect));
136 result = sourceRect;
/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/angle/src/libGLESv2/renderer/d3d/d3d11/
H A DRenderer11.cpp1944 bool Renderer11::copyImage2D(gl::Framebuffer *framebuffer, const gl::Rectangle &sourceRect, GLenum destFormat, argument
1990 gl::Box sourceArea(sourceRect.x, sourceRect.y, 0, sourceRect.width, sourceRect.height, 1);
1993 gl::Box destArea(xoffset, yoffset, 0, sourceRect.width, sourceRect.height, 1);
2006 bool Renderer11::copyImageCube(gl::Framebuffer *framebuffer, const gl::Rectangle &sourceRect, GLenum destFormat, argument
2052 gl::Box sourceArea(sourceRect.x, sourceRect
2068 copyImage3D(gl::Framebuffer *framebuffer, const gl::Rectangle &sourceRect, GLenum destFormat, GLint xoffset, GLint yoffset, GLint zOffset, TextureStorage *storage, GLint level) argument
2130 copyImage2DArray(gl::Framebuffer *framebuffer, const gl::Rectangle &sourceRect, GLenum destFormat, GLint xoffset, GLint yoffset, GLint zOffset, TextureStorage *storage, GLint level) argument
[all...]
/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 530 milliseconds