Home
last modified time | relevance | path

Searched refs:copyArea (Results 1 – 3 of 3) sorted by relevance

/external/angle/src/libANGLE/renderer/d3d/d3d11/
DTextureStorage11.cpp527 const gl::Box &copyArea) in updateSubresourceLevel() argument
538 bool fullCopy = copyArea.coversSameExtent(texSize); in updateSubresourceLevel()
564 return blitter->copyDepthStencil(context, srcTexture, sourceSubresource, copyArea, texSize, in updateSubresourceLevel()
565 *dstTexture, dstSubresource, copyArea, texSize, nullptr); in updateSubresourceLevel()
569 srcBox.left = copyArea.x; in updateSubresourceLevel()
570 srcBox.top = copyArea.y; in updateSubresourceLevel()
572 copyArea.x + roundUp(static_cast<UINT>(copyArea.width), dxgiFormatSizeInfo.blockWidth); in updateSubresourceLevel()
574 copyArea.y + roundUp(static_cast<UINT>(copyArea.height), dxgiFormatSizeInfo.blockHeight); in updateSubresourceLevel()
575 srcBox.front = copyArea.z; in updateSubresourceLevel()
576 srcBox.back = copyArea.z + copyArea.depth; in updateSubresourceLevel()
[all …]
DTextureStorage11.h93 const gl::Box &copyArea);
/external/proguard/src/proguard/gui/splash/
DOverrideGraphics2D.java254 public void copyArea(int x, int y, int width, int height, int dx, int dy) in copyArea() method in OverrideGraphics2D
256 graphics.copyArea(x, y, width, height, dx, dy); in copyArea()