Lines Matching refs:dstTexture
160 const GrD3DTextureResource* dstTexture, in copyBufferToTexture() argument
168 this->addResource(dstTexture->resource()); in copyBufferToTexture()
177 dst.pResource = dstTexture->d3dResource(); in copyBufferToTexture()
223 ID3D12Resource* dstTexture = dst->d3dResource(); in copyTextureToTexture() local
226 fCommandList->CopyResource(dstTexture, srcTexture); in copyTextureToTexture()
236 dstLoc.pResource = dstTexture; in copyTextureToTexture()
520 void GrD3DDirectCommandList::resolveSubresourceRegion(const GrD3DTextureResource* dstTexture, in resolveSubresourceRegion() argument
524 SkASSERT(dstTexture->dxgiFormat() == srcTexture->dxgiFormat()); in resolveSubresourceRegion()
525 SkASSERT(dstTexture->currentState() == D3D12_RESOURCE_STATE_RESOLVE_DEST); in resolveSubresourceRegion()
528 this->addResource(dstTexture->resource()); in resolveSubresourceRegion()
534 commandList1->ResolveSubresourceRegion(dstTexture->d3dResource(), 0, dstX, dstY, in resolveSubresourceRegion()
539 fCommandList->ResolveSubresource(dstTexture->d3dResource(), 0, srcTexture->d3dResource(), 0, in resolveSubresourceRegion()