/third_party/skia/third_party/externals/dawn/src/tests/end2end/ |
D | SwapChainTests.cpp | 92 wgpu::SwapChain swapchain = device.CreateSwapChain(surface, &baseDescriptor); in TEST_P() 99 wgpu::SwapChain swapchain1 = device.CreateSwapChain(surface, &baseDescriptor); in TEST_P() 103 wgpu::SwapChain swapchain2 = device.CreateSwapChain(surface, &baseDescriptor); in TEST_P() 110 wgpu::SwapChain swapchain1 = device.CreateSwapChain(surface, &baseDescriptor); in TEST_P() 113 wgpu::SwapChain swapchain2 = device.CreateSwapChain(surface, &baseDescriptor); in TEST_P() 120 wgpu::SwapChain swapchain = device.CreateSwapChain(surface, &baseDescriptor); in TEST_P() 126 wgpu::SwapChain swapchain = device.CreateSwapChain(surface, &baseDescriptor); in TEST_P() 132 wgpu::SwapChain swapchain = device.CreateSwapChain(surface, &baseDescriptor); in TEST_P() 158 wgpu::SwapChain swapchain1 = device.CreateSwapChain(surface, &desc); in TEST_P() 163 wgpu::SwapChain swapchain2 = device.CreateSwapChain(surface, &desc); in TEST_P() [all …]
|
D | SwapChainValidationTests.cpp | 111 wgpu::SwapChain swapchain = device.CreateSwapChain(surface, &goodDescriptor); in TEST_P() 176 wgpu::SwapChain swapchain; in TEST_P() 188 wgpu::SwapChain swapchain = device.CreateSwapChain(surface, &goodDescriptor); in TEST_P() 203 wgpu::SwapChain swapchain = device.CreateSwapChain(surface, &goodDescriptor); in TEST_P() 215 wgpu::SwapChain swapchain = device.CreateSwapChain(surface, &goodDescriptor); in TEST_P() 259 wgpu::SwapChain swapchain = device.CreateSwapChain(surface, &goodDescriptor); in TEST_P() 281 wgpu::SwapChain swapchain = device.CreateSwapChain(surface, &goodDescriptor); in TEST_P() 291 wgpu::SwapChain replacedSwapChain = device.CreateSwapChain(surface, &goodDescriptor); in TEST_P() 297 wgpu::SwapChain replacedSwapChain = device.CreateSwapChain(surface, &goodDescriptor); in TEST_P() 309 wgpu::SwapChain replacedSwapChain = device.CreateSwapChain(surface, &goodDescriptor); in TEST_P() [all …]
|
/third_party/flutter/skia/third_party/externals/dawn/src/dawn_native/opengl/ |
D | SwapChainGL.cpp | 25 SwapChain::SwapChain(Device* device, const SwapChainDescriptor* descriptor) in SwapChain() function in dawn_native::opengl::SwapChain 31 SwapChain::~SwapChain() { in ~SwapChain() 34 TextureBase* SwapChain::GetNextTextureImpl(const TextureDescriptor* descriptor) { in GetNextTextureImpl() 47 void SwapChain::OnBeforePresent(TextureBase*) { in OnBeforePresent()
|
D | SwapChainGL.h | 26 class SwapChain : public SwapChainBase { 28 SwapChain(Device* device, const SwapChainDescriptor* descriptor); 29 ~SwapChain();
|
/third_party/skia/third_party/externals/dawn/src/dawn_native/opengl/ |
D | SwapChainGL.cpp | 25 SwapChain::SwapChain(Device* device, const SwapChainDescriptor* descriptor) in SwapChain() function in dawn_native::opengl::SwapChain 31 SwapChain::~SwapChain() { in ~SwapChain() 34 TextureBase* SwapChain::GetNextTextureImpl(const TextureDescriptor* descriptor) { in GetNextTextureImpl() 47 MaybeError SwapChain::OnBeforePresent(TextureViewBase*) { in OnBeforePresent()
|
D | SwapChainGL.h | 26 class SwapChain final : public OldSwapChainBase { 28 SwapChain(Device* device, const SwapChainDescriptor* descriptor); 31 ~SwapChain() override;
|
D | Forward.h | 36 class SwapChain; variable 54 using SwapChainType = SwapChain;
|
/third_party/skia/third_party/externals/dawn/src/dawn_native/metal/ |
D | SwapChainMTL.mm | 64 // SwapChain 67 ResultOrError<Ref<SwapChain>> SwapChain::Create(Device* device, 71 Ref<SwapChain> swapchain = AcquireRef(new SwapChain(device, surface, descriptor)); 76 SwapChain::~SwapChain() = default; 78 void SwapChain::DestroyImpl() { 83 MaybeError SwapChain::Initialize(NewSwapChainBase* previousSwapChain) { 91 "Metal SwapChain cannot switch backend types from %s to %s.", 120 MaybeError SwapChain::PresentImpl() { 132 ResultOrError<TextureViewBase*> SwapChain::GetCurrentTextureViewImpl() { 144 void SwapChain::DetachFromSurfaceImpl() {
|
D | SwapChainMTL.h | 41 class SwapChain final : public NewSwapChainBase { 43 static ResultOrError<Ref<SwapChain>> Create(Device* device, 47 ~SwapChain() override;
|
/third_party/skia/third_party/externals/dawn/src/dawn_native/d3d12/ |
D | SwapChainD3D12.cpp | 135 ResultOrError<Ref<SwapChain>> SwapChain::Create(Device* device, in Create() 139 Ref<SwapChain> swapchain = AcquireRef(new SwapChain(device, surface, descriptor)); in Create() 144 SwapChain::~SwapChain() = default; 146 void SwapChain::DestroyImpl() { in DestroyImpl() 154 MaybeError SwapChain::Initialize(NewSwapChainBase* previousSwapChain) { in Initialize() 177 SwapChain* previousD3D12SwapChain = static_cast<SwapChain*>(previousSwapChain); in Initialize() 227 MaybeError SwapChain::InitializeSwapChainFromScratch() { in InitializeSwapChainFromScratch() 290 MaybeError SwapChain::CollectSwapChainBuffers() { in CollectSwapChainBuffers() 305 MaybeError SwapChain::PresentImpl() { in PresentImpl() 335 ResultOrError<TextureViewBase*> SwapChain::GetCurrentTextureViewImpl() { in GetCurrentTextureViewImpl() [all …]
|
D | SwapChainD3D12.h | 41 class SwapChain final : public NewSwapChainBase { 43 static ResultOrError<Ref<SwapChain>> Create(Device* device, 49 ~SwapChain() override;
|
/third_party/flutter/skia/third_party/externals/dawn/src/dawn_native/vulkan/ |
D | SwapChainVk.cpp | 22 SwapChain::SwapChain(Device* device, const SwapChainDescriptor* descriptor) in SwapChain() function in dawn_native::vulkan::SwapChain 32 SwapChain::~SwapChain() { in ~SwapChain() 35 TextureBase* SwapChain::GetNextTextureImpl(const TextureDescriptor* descriptor) { in GetNextTextureImpl() 49 void SwapChain::OnBeforePresent(TextureBase* texture) { in OnBeforePresent()
|
D | SwapChainVk.h | 26 class SwapChain : public SwapChainBase { 28 SwapChain(Device* device, const SwapChainDescriptor* descriptor); 29 ~SwapChain();
|
/third_party/flutter/skia/third_party/externals/dawn/src/dawn_native/d3d12/ |
D | SwapChainD3D12.cpp | 24 SwapChain::SwapChain(Device* device, const SwapChainDescriptor* descriptor) in SwapChain() function in dawn_native::d3d12::SwapChain 35 SwapChain::~SwapChain() { in ~SwapChain() 38 TextureBase* SwapChain::GetNextTextureImpl(const TextureDescriptor* descriptor) { in GetNextTextureImpl() 51 void SwapChain::OnBeforePresent(TextureBase* texture) { in OnBeforePresent()
|
D | SwapChainD3D12.h | 24 class SwapChain : public SwapChainBase { 26 SwapChain(Device* device, const SwapChainDescriptor* descriptor); 27 ~SwapChain();
|
D | Forward.h | 35 class SwapChain; variable 53 using SwapChainType = SwapChain;
|
/third_party/flutter/skia/third_party/externals/dawn/src/dawn_native/metal/ |
D | SwapChainMTL.mm | 24 SwapChain::SwapChain(Device* device, const SwapChainDescriptor* descriptor) 32 SwapChain::~SwapChain() { 35 TextureBase* SwapChain::GetNextTextureImpl(const TextureDescriptor* descriptor) { 48 void SwapChain::OnBeforePresent(TextureBase*) {
|
D | SwapChainMTL.h | 24 class SwapChain : public SwapChainBase { 26 SwapChain(Device* device, const SwapChainDescriptor* descriptor); 27 ~SwapChain();
|
/third_party/skia/third_party/externals/dawn/src/dawn_native/vulkan/ |
D | SwapChainVk.cpp | 217 ResultOrError<Ref<SwapChain>> SwapChain::Create(Device* device, in Create() 221 Ref<SwapChain> swapchain = AcquireRef(new SwapChain(device, surface, descriptor)); in Create() 226 SwapChain::~SwapChain() = default; 228 void SwapChain::DestroyImpl() { in DestroyImpl() 235 MaybeError SwapChain::Initialize(NewSwapChainBase* previousSwapChain) { in Initialize() 253 SwapChain* previousVulkanSwapChain = static_cast<SwapChain*>(previousSwapChain); in Initialize() 327 ResultOrError<SwapChain::Config> SwapChain::ChooseConfig( in ChooseConfig() 470 MaybeError SwapChain::PresentImpl() { in PresentImpl() 557 ResultOrError<TextureViewBase*> SwapChain::GetCurrentTextureViewImpl() { in GetCurrentTextureViewImpl() 561 ResultOrError<TextureViewBase*> SwapChain::GetCurrentTextureViewInternal(bool isReentrant) { in GetCurrentTextureViewInternal() [all …]
|
D | SwapChainVk.h | 45 class SwapChain : public NewSwapChainBase { 47 static ResultOrError<Ref<SwapChain>> Create(Device* device, 51 ~SwapChain() override;
|
/third_party/skia/third_party/externals/dawn/src/dawn_native/null/ |
D | DeviceNull.cpp | 165 return SwapChain::Create(this, surface, previousSwapChain, descriptor); in CreateSwapChainImpl() 389 ResultOrError<Ref<SwapChain>> SwapChain::Create(Device* device, in Create() 393 Ref<SwapChain> swapchain = AcquireRef(new SwapChain(device, surface, descriptor)); in Create() 398 MaybeError SwapChain::Initialize(NewSwapChainBase* previousSwapChain) { in Initialize() 411 SwapChain::~SwapChain() = default; 413 MaybeError SwapChain::PresentImpl() { in PresentImpl() 419 ResultOrError<TextureViewBase*> SwapChain::GetCurrentTextureViewImpl() { in GetCurrentTextureViewImpl() 428 void SwapChain::DetachFromSurfaceImpl() { in DetachFromSurfaceImpl()
|
D | DeviceNull.h | 54 class SwapChain; variable 72 using SwapChainType = SwapChain; 285 class SwapChain final : public NewSwapChainBase { 287 static ResultOrError<Ref<SwapChain>> Create(Device* device, 291 ~SwapChain() override;
|
/third_party/flutter/skia/third_party/externals/dawn/src/dawn_native/null/ |
D | DeviceNull.cpp | 133 return new SwapChain(this, descriptor); in CreateSwapChainImpl() 318 SwapChain::SwapChain(Device* device, const SwapChainDescriptor* descriptor) in SwapChain() function in dawn_native::null::SwapChain 324 SwapChain::~SwapChain() { in ~SwapChain() 327 TextureBase* SwapChain::GetNextTextureImpl(const TextureDescriptor* descriptor) { in GetNextTextureImpl() 331 void SwapChain::OnBeforePresent(TextureBase*) { in OnBeforePresent()
|
D | DeviceNull.h | 51 class SwapChain; variable 68 using SwapChainType = SwapChain; 184 class SwapChain : public SwapChainBase { 186 SwapChain(Device* device, const SwapChainDescriptor* descriptor); 187 ~SwapChain();
|
/third_party/cef/tests/cefclient/browser/ |
D | osr_d3d11_win.h | 36 class SwapChain; variable 94 std::shared_ptr<SwapChain> create_swapchain(HWND, 136 class SwapChain { 138 SwapChain(IDXGISwapChain*, 163 DISALLOW_COPY_AND_ASSIGN(SwapChain);
|