/third_party/skia/third_party/externals/dawn/src/dawn_native/d3d12/ |
D | SwapChainD3D12.cpp | 137 NewSwapChainBase* previousSwapChain, in Create() argument 140 DAWN_TRY(swapchain->Initialize(previousSwapChain)); in Create() 154 MaybeError SwapChain::Initialize(NewSwapChainBase* previousSwapChain) { in Initialize() argument 165 if (previousSwapChain == nullptr) { in Initialize() 172 DAWN_INVALID_IF(previousSwapChain->GetBackendType() != wgpu::BackendType::D3D12, in Initialize() 174 previousSwapChain->GetBackendType(), wgpu::BackendType::D3D12); in Initialize() 177 SwapChain* previousD3D12SwapChain = static_cast<SwapChain*>(previousSwapChain); in Initialize() 182 DAWN_INVALID_IF(GetDevice() != previousSwapChain->GetDevice(), in Initialize() 203 bool canReuseBuffers = GetWidth() == previousSwapChain->GetWidth() && in Initialize() 204 GetHeight() == previousSwapChain->GetHeight() && in Initialize() [all …]
|
D | SwapChainD3D12.h | 45 NewSwapChainBase* previousSwapChain, 54 MaybeError Initialize(NewSwapChainBase* previousSwapChain);
|
D | DeviceD3D12.h | 174 NewSwapChainBase* previousSwapChain,
|
D | DeviceD3D12.cpp | 428 NewSwapChainBase* previousSwapChain, in CreateSwapChainImpl() argument 430 return SwapChain::Create(this, surface, previousSwapChain, descriptor); in CreateSwapChainImpl()
|
/third_party/skia/third_party/externals/dawn/src/dawn_native/metal/ |
D | SwapChainMTL.mm | 69 NewSwapChainBase* previousSwapChain, 72 DAWN_TRY(swapchain->Initialize(previousSwapChain)); 83 MaybeError SwapChain::Initialize(NewSwapChainBase* previousSwapChain) { 86 if (previousSwapChain != nullptr) { 90 DAWN_INVALID_IF(previousSwapChain->GetBackendType() != wgpu::BackendType::Metal, 92 previousSwapChain->GetBackendType(), wgpu::BackendType::Metal); 94 previousSwapChain->DetachFromSurface();
|
D | SwapChainMTL.h | 45 NewSwapChainBase* previousSwapChain, 53 MaybeError Initialize(NewSwapChainBase* previousSwapChain);
|
D | DeviceMTL.h | 105 NewSwapChainBase* previousSwapChain,
|
D | DeviceMTL.mm | 276 NewSwapChainBase* previousSwapChain, 278 return SwapChain::Create(this, surface, previousSwapChain, descriptor);
|
/third_party/skia/third_party/externals/dawn/src/dawn_native/vulkan/ |
D | SwapChainVk.cpp | 219 NewSwapChainBase* previousSwapChain, in Create() argument 222 DAWN_TRY(swapchain->Initialize(previousSwapChain)); in Create() 235 MaybeError SwapChain::Initialize(NewSwapChainBase* previousSwapChain) { in Initialize() argument 241 if (previousSwapChain != nullptr) { in Initialize() 248 DAWN_INVALID_IF(previousSwapChain->GetBackendType() != wgpu::BackendType::Vulkan, in Initialize() 250 previousSwapChain->GetBackendType(), wgpu::BackendType::Vulkan); in Initialize() 253 SwapChain* previousVulkanSwapChain = static_cast<SwapChain*>(previousSwapChain); in Initialize() 258 ToBackend(previousSwapChain->GetDevice())->GetVkInstance(); in Initialize() 272 ToBackend(previousSwapChain->GetDevice()) in Initialize()
|
D | SwapChainVk.h | 49 NewSwapChainBase* previousSwapChain, 55 MaybeError Initialize(NewSwapChainBase* previousSwapChain);
|
D | DeviceVk.h | 131 NewSwapChainBase* previousSwapChain,
|
D | DeviceVk.cpp | 154 NewSwapChainBase* previousSwapChain, in CreateSwapChainImpl() argument 156 return SwapChain::Create(this, surface, previousSwapChain, descriptor); in CreateSwapChainImpl()
|
/third_party/skia/third_party/externals/dawn/src/dawn_native/null/ |
D | DeviceNull.cpp | 163 NewSwapChainBase* previousSwapChain, in CreateSwapChainImpl() argument 165 return SwapChain::Create(this, surface, previousSwapChain, descriptor); in CreateSwapChainImpl() 391 NewSwapChainBase* previousSwapChain, in Create() argument 394 DAWN_TRY(swapchain->Initialize(previousSwapChain)); in Create() 398 MaybeError SwapChain::Initialize(NewSwapChainBase* previousSwapChain) { in Initialize() argument 399 if (previousSwapChain != nullptr) { in Initialize() 403 if (previousSwapChain->GetBackendType() != wgpu::BackendType::Null) { in Initialize()
|
D | DeviceNull.h | 150 NewSwapChainBase* previousSwapChain, 289 NewSwapChainBase* previousSwapChain, 295 MaybeError Initialize(NewSwapChainBase* previousSwapChain);
|
/third_party/skia/third_party/externals/dawn/src/dawn_native/opengl/ |
D | DeviceGL.h | 107 NewSwapChainBase* previousSwapChain,
|
D | DeviceGL.cpp | 163 NewSwapChainBase* previousSwapChain, in CreateSwapChainImpl() argument
|
/third_party/skia/third_party/externals/dawn/src/dawn_native/ |
D | Device.cpp | 1521 NewSwapChainBase* previousSwapChain = surface->GetAttachedSwapChain(); in CreateSwapChain() local 1523 CreateSwapChainImpl(surface, previousSwapChain, descriptor); in CreateSwapChain() 1525 if (previousSwapChain != nullptr) { in CreateSwapChain() 1526 previousSwapChain->DetachFromSurface(); in CreateSwapChain()
|
D | Device.h | 408 NewSwapChainBase* previousSwapChain,
|