Home
last modified time | relevance | path

Searched refs:d3d12Texture (Results 1 – 5 of 5) sorted by relevance

/third_party/skia/third_party/externals/dawn/src/dawn_native/d3d12/
DTextureD3D12.h46 ComPtr<ID3D12Resource> d3d12Texture,
54 ComPtr<ID3D12Resource> d3d12Texture);
97 ComPtr<ID3D12Resource> d3d12Texture,
102 MaybeError InitializeAsSwapChainTexture(ComPtr<ID3D12Resource> d3d12Texture);
DTextureD3D12.cpp521 ComPtr<ID3D12Resource> d3d12Texture, in CreateExternalImage() argument
530 descriptor, std::move(d3d12Texture), std::move(d3d11on12Resource), acquireMutexKey, in CreateExternalImage()
548 ComPtr<ID3D12Resource> d3d12Texture) { in Create() argument
551 DAWN_TRY(dawnTexture->InitializeAsSwapChainTexture(std::move(d3d12Texture))); in Create()
557 ComPtr<ID3D12Resource> d3d12Texture, in InitializeAsExternalTexture() argument
571 D3D12_RESOURCE_DESC desc = d3d12Texture->GetDesc(); in InitializeAsExternalTexture()
579 mResourceAllocation = {info, 0, std::move(d3d12Texture), nullptr}; in InitializeAsExternalTexture()
635 MaybeError Texture::InitializeAsSwapChainTexture(ComPtr<ID3D12Resource> d3d12Texture) { in InitializeAsSwapChainTexture() argument
641 mResourceAllocation = {info, 0, std::move(d3d12Texture), nullptr}; in InitializeAsSwapChainTexture()
DSwapChainD3D12.cpp105 ComPtr<ID3D12Resource> d3d12Texture = static_cast<ID3D12Resource*>(next.texture.ptr); in GetNextTextureImpl() local
108 Texture::Create(ToBackend(GetDevice()), descriptor, std::move(d3d12Texture)), in GetNextTextureImpl()
DDeviceD3D12.cpp535 ComPtr<ID3D12Resource> d3d12Texture, in CreateExternalTexture() argument
543 Texture::CreateExternalImage(this, descriptor, std::move(d3d12Texture), in CreateExternalTexture()
DDeviceD3D12.h132 ComPtr<ID3D12Resource> d3d12Texture,