mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
92 lines
2.9 KiB
C++
92 lines
2.9 KiB
C++
// Copyright 2013 The Flutter Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#ifndef FLUTTER_SHELL_COMMON_SHELL_TEST_PLATFORM_VIEW_VULKAN_H_
|
|
#define FLUTTER_SHELL_COMMON_SHELL_TEST_PLATFORM_VIEW_VULKAN_H_
|
|
|
|
#include "flutter/shell/common/shell_test_external_view_embedder.h"
|
|
#include "flutter/shell/common/shell_test_platform_view.h"
|
|
#include "flutter/shell/gpu/gpu_surface_vulkan_delegate.h"
|
|
#include "flutter/vulkan/vulkan_application.h"
|
|
#include "flutter/vulkan/vulkan_device.h"
|
|
|
|
namespace flutter {
|
|
namespace testing {
|
|
|
|
class ShellTestPlatformViewVulkan : public ShellTestPlatformView {
|
|
public:
|
|
ShellTestPlatformViewVulkan(PlatformView::Delegate& delegate,
|
|
TaskRunners task_runners,
|
|
std::shared_ptr<ShellTestVsyncClock> vsync_clock,
|
|
CreateVsyncWaiter create_vsync_waiter,
|
|
std::shared_ptr<ShellTestExternalViewEmbedder>
|
|
shell_test_external_view_embedder);
|
|
|
|
~ShellTestPlatformViewVulkan() override;
|
|
|
|
void SimulateVSync() override;
|
|
|
|
private:
|
|
class OffScreenSurface : public flutter::Surface {
|
|
public:
|
|
OffScreenSurface(fml::RefPtr<vulkan::VulkanProcTable> vk,
|
|
std::shared_ptr<ShellTestExternalViewEmbedder>
|
|
shell_test_external_view_embedder);
|
|
|
|
~OffScreenSurface() override;
|
|
|
|
// |Surface|
|
|
bool IsValid() override;
|
|
|
|
// |Surface|
|
|
std::unique_ptr<SurfaceFrame> AcquireFrame(const SkISize& size) override;
|
|
|
|
SkMatrix GetRootTransformation() const override;
|
|
|
|
// |Surface|
|
|
GrContext* GetContext() override;
|
|
|
|
flutter::ExternalViewEmbedder* GetExternalViewEmbedder() override;
|
|
|
|
private:
|
|
bool valid_;
|
|
fml::RefPtr<vulkan::VulkanProcTable> vk_;
|
|
std::shared_ptr<ShellTestExternalViewEmbedder>
|
|
shell_test_external_view_embedder_;
|
|
std::unique_ptr<vulkan::VulkanApplication> application_;
|
|
std::unique_ptr<vulkan::VulkanDevice> logical_device_;
|
|
sk_sp<GrContext> context_;
|
|
|
|
bool CreateSkiaGrContext();
|
|
bool CreateSkiaBackendContext(GrVkBackendContext* context);
|
|
|
|
FML_DISALLOW_COPY_AND_ASSIGN(OffScreenSurface);
|
|
};
|
|
|
|
CreateVsyncWaiter create_vsync_waiter_;
|
|
|
|
std::shared_ptr<ShellTestVsyncClock> vsync_clock_;
|
|
|
|
fml::RefPtr<vulkan::VulkanProcTable> proc_table_;
|
|
|
|
std::shared_ptr<ShellTestExternalViewEmbedder>
|
|
shell_test_external_view_embedder_;
|
|
|
|
// |PlatformView|
|
|
std::unique_ptr<Surface> CreateRenderingSurface() override;
|
|
|
|
// |PlatformView|
|
|
std::unique_ptr<VsyncWaiter> CreateVSyncWaiter() override;
|
|
|
|
// |PlatformView|
|
|
PointerDataDispatcherMaker GetDispatcherMaker() override;
|
|
|
|
FML_DISALLOW_COPY_AND_ASSIGN(ShellTestPlatformViewVulkan);
|
|
};
|
|
|
|
} // namespace testing
|
|
} // namespace flutter
|
|
|
|
#endif // FLUTTER_SHELL_COMMON_SHELL_TEST_PLATFORM_VIEW_VULKAN_H_
|