Home
last modified time | relevance | path

Searched refs:SwapChain (Results 1 – 25 of 68) sorted by relevance

123

/third_party/skia/third_party/externals/dawn/src/tests/end2end/
DSwapChainTests.cpp92 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 …]
DSwapChainValidationTests.cpp111 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/
DSwapChainGL.cpp25 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()
DSwapChainGL.h26 class SwapChain : public SwapChainBase {
28 SwapChain(Device* device, const SwapChainDescriptor* descriptor);
29 ~SwapChain();
/third_party/skia/third_party/externals/dawn/src/dawn_native/opengl/
DSwapChainGL.cpp25 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()
DSwapChainGL.h26 class SwapChain final : public OldSwapChainBase {
28 SwapChain(Device* device, const SwapChainDescriptor* descriptor);
31 ~SwapChain() override;
DForward.h36 class SwapChain; variable
54 using SwapChainType = SwapChain;
/third_party/skia/third_party/externals/dawn/src/dawn_native/metal/
DSwapChainMTL.mm64 // 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() {
DSwapChainMTL.h41 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/
DSwapChainD3D12.cpp135 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 …]
DSwapChainD3D12.h41 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/
DSwapChainVk.cpp22 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()
DSwapChainVk.h26 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/
DSwapChainD3D12.cpp24 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()
DSwapChainD3D12.h24 class SwapChain : public SwapChainBase {
26 SwapChain(Device* device, const SwapChainDescriptor* descriptor);
27 ~SwapChain();
DForward.h35 class SwapChain; variable
53 using SwapChainType = SwapChain;
/third_party/flutter/skia/third_party/externals/dawn/src/dawn_native/metal/
DSwapChainMTL.mm24 SwapChain::SwapChain(Device* device, const SwapChainDescriptor* descriptor)
32 SwapChain::~SwapChain() {
35 TextureBase* SwapChain::GetNextTextureImpl(const TextureDescriptor* descriptor) {
48 void SwapChain::OnBeforePresent(TextureBase*) {
DSwapChainMTL.h24 class SwapChain : public SwapChainBase {
26 SwapChain(Device* device, const SwapChainDescriptor* descriptor);
27 ~SwapChain();
/third_party/skia/third_party/externals/dawn/src/dawn_native/vulkan/
DSwapChainVk.cpp217 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 …]
DSwapChainVk.h45 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/
DDeviceNull.cpp165 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()
DDeviceNull.h54 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/
DDeviceNull.cpp133 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()
DDeviceNull.h51 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/
Dosr_d3d11_win.h36 class SwapChain; variable
94 std::shared_ptr<SwapChain> create_swapchain(HWND,
136 class SwapChain {
138 SwapChain(IDXGISwapChain*,
163 DISALLOW_COPY_AND_ASSIGN(SwapChain);

123