Home
last modified time | relevance | path

Searched refs:srcBox (Results 1 – 12 of 12) sorted by relevance

/third_party/skia/third_party/externals/angle2/src/tests/gl_tests/
DD3D11EmulatedIndexedBufferTest.cpp77 D3D11_BOX srcBox; in createMappableCompareBufferFromEmulatedBuffer() local
78 srcBox.left = 0; in createMappableCompareBufferFromEmulatedBuffer()
79 srcBox.right = size; in createMappableCompareBufferFromEmulatedBuffer()
80 srcBox.top = 0; in createMappableCompareBufferFromEmulatedBuffer()
81 srcBox.bottom = 1; in createMappableCompareBufferFromEmulatedBuffer()
82 srcBox.front = 0; in createMappableCompareBufferFromEmulatedBuffer()
83 srcBox.back = 1; in createMappableCompareBufferFromEmulatedBuffer()
86 sourceBuffer, 0, &srcBox); in createMappableCompareBufferFromEmulatedBuffer()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d11/
DBuffer11.cpp1202 D3D11_BOX srcBox; in copyFromStorage() local
1203 srcBox.left = static_cast<unsigned int>(sourceOffset); in copyFromStorage()
1204 srcBox.right = static_cast<unsigned int>(sourceOffset + clampedSize); in copyFromStorage()
1205 srcBox.top = 0; in copyFromStorage()
1206 srcBox.bottom = 1; in copyFromStorage()
1207 srcBox.front = 0; in copyFromStorage()
1208 srcBox.back = 1; in copyFromStorage()
1215 sourceBuffer->get(), 0, &srcBox); in copyFromStorage()
1245 D3D11_BOX srcBox; in resize() local
1246 srcBox.left = 0; in resize()
[all …]
DImage11.cpp466 D3D11_BOX srcBox; in copyWithoutConversion() local
467 srcBox.left = sourceArea.x; in copyWithoutConversion()
468 srcBox.right = sourceArea.x + sourceArea.width; in copyWithoutConversion()
469 srcBox.top = sourceArea.y; in copyWithoutConversion()
470 srcBox.bottom = sourceArea.y + sourceArea.height; in copyWithoutConversion()
471 srcBox.front = sourceArea.z; in copyWithoutConversion()
472 srcBox.back = sourceArea.z + sourceArea.depth; in copyWithoutConversion()
498 resolveTex.get(), 0, &srcBox); in copyWithoutConversion()
504 textureHelper.get(), sourceSubResource, &srcBox); in copyWithoutConversion()
DTextureStorage11.cpp568 D3D11_BOX srcBox; in updateSubresourceLevel() local
569 srcBox.left = copyArea.x; in updateSubresourceLevel()
570 srcBox.top = copyArea.y; in updateSubresourceLevel()
571 srcBox.right = in updateSubresourceLevel()
573 srcBox.bottom = in updateSubresourceLevel()
575 srcBox.front = copyArea.z; in updateSubresourceLevel()
576 srcBox.back = copyArea.z + copyArea.depth; in updateSubresourceLevel()
582 fullCopy ? nullptr : &srcBox); in updateSubresourceLevel()
617 D3D11_BOX srcBox; in copySubresourceLevel() local
632 srcBox.left = region.x; in copySubresourceLevel()
[all …]
DRenderer11.cpp3492 D3D11_BOX srcBox; in readFromAttachment() local
3493 srcBox.left = static_cast<UINT>(safeArea.x); in readFromAttachment()
3494 srcBox.right = static_cast<UINT>(safeArea.x + safeArea.width); in readFromAttachment()
3495 srcBox.top = static_cast<UINT>(safeArea.y); in readFromAttachment()
3496 srcBox.bottom = static_cast<UINT>(safeArea.y + safeArea.height); in readFromAttachment()
3499 srcBox.front = 0; in readFromAttachment()
3502 srcBox.front = static_cast<UINT>(srcAttachment.layer()); in readFromAttachment()
3504 srcBox.back = srcBox.front + 1; in readFromAttachment()
3507 sourceSubResource, &srcBox); in readFromAttachment()
/third_party/skia/src/gpu/d3d/
DGrD3DGpu.cpp496 D3D12_BOX srcBox = {}; in copySurfaceAsCopyTexture() local
497 srcBox.left = srcRect.fLeft; in copySurfaceAsCopyTexture()
498 srcBox.top = srcRect.fTop; in copySurfaceAsCopyTexture()
499 srcBox.right = srcRect.fRight; in copySurfaceAsCopyTexture()
500 srcBox.bottom = srcRect.fBottom; in copySurfaceAsCopyTexture()
501 srcBox.front = 0; in copySurfaceAsCopyTexture()
502 srcBox.back = 1; in copySurfaceAsCopyTexture()
509 &srcBox); in copySurfaceAsCopyTexture()
630 D3D12_BOX srcBox = {}; in readOrTransferPixels() local
631 srcBox.left = rect.left(); in readOrTransferPixels()
[all …]
DGrD3DCommandList.h79 const D3D12_BOX* srcBox);
87 const D3D12_BOX* srcBox);
DGrD3DCommandList.cpp190 const D3D12_BOX* srcBox) { in copyTextureRegionToTexture() argument
196 fCommandList->CopyTextureRegion(dstLocation, dstX, dstY, 0, srcLocation, srcBox); in copyTextureRegionToTexture()
205 const D3D12_BOX* srcBox) { in copyTextureRegionToBuffer() argument
211 fCommandList->CopyTextureRegion(dstLocation, dstX, dstY, 0, srcLocation, srcBox); in copyTextureRegionToBuffer()
/third_party/mesa3d/src/gallium/drivers/svga/include/
Dsvga3d_cmd.h1297 SVGA3dBox srcBox; member
1316 SVGA3dBox srcBox; member
1352 SVGA3dBox srcBox; member
Dsvga3d_dx.h796 SVGA3dBox srcBox; member
809 SVGA3dBox srcBox; member
980 SVGA3dBox srcBox; member
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/
DTextureImpl.cpp110 const gl::Box &srcBox, in copy3DSubTexture() argument
DTextureImpl.h158 const gl::Box &srcBox,