Lines Matching refs:sourceBox
2517 const gl::Box &sourceBox, in copyTexture() argument
2557 D3D11_BOX d3dBox{static_cast<UINT>(sourceBox.x), in copyTexture()
2558 static_cast<UINT>(sourceBox.y), in copyTexture()
2559 static_cast<UINT>(sourceBox.z), in copyTexture()
2560 static_cast<UINT>(sourceBox.x + sourceBox.width), in copyTexture()
2561 static_cast<UINT>(sourceBox.y + sourceBox.height), in copyTexture()
2562 static_cast<UINT>(sourceBox.z + sourceBox.depth)}; in copyTexture()
2570 D3D11_BOX d3dBox{static_cast<UINT>(sourceBox.x), in copyTexture()
2571 static_cast<UINT>(sourceBox.y), in copyTexture()
2573 static_cast<UINT>(sourceBox.x + sourceBox.width), in copyTexture()
2574 static_cast<UINT>(sourceBox.y + sourceBox.height), in copyTexture()
2577 for (int i = 0; i < sourceBox.depth; i++) in copyTexture()
2580 gl::ImageIndex::Make2DArray(sourceLevel, i + sourceBox.z); in copyTexture()
2635 gl::Box sourceArea(sourceBox.x, sourceBox.y, sourceBox.z, sourceBox.width, sourceBox.height, in copyTexture()
2636 sourceBox.depth); in copyTexture()
2644 gl::Box destArea(destOffset.x, destOffset.y, destOffset.z, sourceBox.width, in copyTexture()
2645 sourceBox.height, sourceBox.depth); in copyTexture()
2648 sourceBox.depth); in copyTexture()
3169 const gl::Box &sourceBox, in copyImage() argument
3177 return Image11::CopyImage(context, dest11, src11, sourceBox, destOffset, unpackFlipY, in copyImage()