Home
last modified time | relevance | path

Searched refs:dstLocation (Results 1 – 6 of 6) sorted by relevance

/third_party/skia/src/gpu/d3d/
DGrD3DGpu.cpp486 D3D12_TEXTURE_COPY_LOCATION dstLocation = {}; in copySurfaceAsCopyTexture() local
487 dstLocation.pResource = dstResource->d3dResource(); in copySurfaceAsCopyTexture()
488 dstLocation.Type = D3D12_TEXTURE_COPY_TYPE_SUBRESOURCE_INDEX; in copySurfaceAsCopyTexture()
489 dstLocation.SubresourceIndex = 0; in copySurfaceAsCopyTexture()
505 &dstLocation, in copySurfaceAsCopyTexture()
639 D3D12_TEXTURE_COPY_LOCATION dstLocation = {}; in readOrTransferPixels() local
640 dstLocation.Type = D3D12_TEXTURE_COPY_TYPE_PLACED_FOOTPRINT; in readOrTransferPixels()
641 dstLocation.PlacedFootprint = placedFootprint; in readOrTransferPixels()
643 dstLocation.pResource = d3dBuf->d3dResource(); in readOrTransferPixels()
648 fCurrentDirectCommandList->copyTextureRegionToBuffer(transferBuffer, &dstLocation, 0, 0, in readOrTransferPixels()
DGrD3DCommandList.h75 const D3D12_TEXTURE_COPY_LOCATION* dstLocation,
82 const D3D12_TEXTURE_COPY_LOCATION* dstLocation,
DGrD3DCommandList.cpp186 const D3D12_TEXTURE_COPY_LOCATION* dstLocation, in copyTextureRegionToTexture() argument
196 fCommandList->CopyTextureRegion(dstLocation, dstX, dstY, 0, srcLocation, srcBox); in copyTextureRegionToTexture()
200 const D3D12_TEXTURE_COPY_LOCATION* dstLocation, in copyTextureRegionToBuffer() argument
211 fCommandList->CopyTextureRegion(dstLocation, dstX, dstY, 0, srcLocation, srcBox); in copyTextureRegionToBuffer()
/third_party/skia/third_party/externals/imgui/backends/
Dimgui_impl_dx12.cpp357 D3D12_TEXTURE_COPY_LOCATION dstLocation = {}; in ImGui_ImplDX12_CreateFontsTexture() local
358 dstLocation.pResource = pTexture; in ImGui_ImplDX12_CreateFontsTexture()
359 dstLocation.Type = D3D12_TEXTURE_COPY_TYPE_SUBRESOURCE_INDEX; in ImGui_ImplDX12_CreateFontsTexture()
360 dstLocation.SubresourceIndex = 0; in ImGui_ImplDX12_CreateFontsTexture()
394 cmdList->CopyTextureRegion(&dstLocation, 0, 0, 0, &srcLocation, NULL); in ImGui_ImplDX12_CreateFontsTexture()
/third_party/skia/tests/
DTransferPixelsTest.cpp30 auto dstLocation = [dst, dstBpp, rowBytes](int x, int y) { in fill_transfer_data() local
45 GrConvertPixels(GrPixmap(dstInfo, dstLocation(i, j), dstBpp), in fill_transfer_data()
/third_party/skia/third_party/externals/dawn/src/dawn_native/d3d12/
DCommandBufferD3D12.cpp853 D3D12_TEXTURE_COPY_LOCATION dstLocation = in RecordCommands() local
860 commandList->CopyTextureRegion(&dstLocation, copy->destination.origin.x, in RecordCommands()
903 D3D12_TEXTURE_COPY_LOCATION dstLocation = in RecordCommands() local
914 &dstLocation, copy->destination.origin.x, in RecordCommands()