mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
52 lines
1.6 KiB
C++
52 lines
1.6 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_platform_view.h"
|
|
#include "flutter/shell/gpu/gpu_surface_vulkan_delegate.h"
|
|
|
|
namespace flutter {
|
|
namespace testing {
|
|
|
|
class ShellTestPlatformViewVulkan : public ShellTestPlatformView,
|
|
public GPUSurfaceVulkanDelegate {
|
|
public:
|
|
ShellTestPlatformViewVulkan(PlatformView::Delegate& delegate,
|
|
TaskRunners task_runners,
|
|
std::shared_ptr<ShellTestVsyncClock> vsync_clock,
|
|
CreateVsyncWaiter create_vsync_waiter);
|
|
|
|
~ShellTestPlatformViewVulkan() override;
|
|
|
|
void SimulateVSync() override;
|
|
|
|
private:
|
|
CreateVsyncWaiter create_vsync_waiter_;
|
|
|
|
std::shared_ptr<ShellTestVsyncClock> vsync_clock_;
|
|
|
|
fml::RefPtr<vulkan::VulkanProcTable> proc_table_;
|
|
|
|
// |PlatformView|
|
|
std::unique_ptr<Surface> CreateRenderingSurface() override;
|
|
|
|
// |PlatformView|
|
|
std::unique_ptr<VsyncWaiter> CreateVSyncWaiter() override;
|
|
|
|
// |PlatformView|
|
|
PointerDataDispatcherMaker GetDispatcherMaker() override;
|
|
|
|
// |GPUSurfaceVulkanDelegate|
|
|
fml::RefPtr<vulkan::VulkanProcTable> vk() override;
|
|
|
|
FML_DISALLOW_COPY_AND_ASSIGN(ShellTestPlatformViewVulkan);
|
|
};
|
|
|
|
} // namespace testing
|
|
} // namespace flutter
|
|
|
|
#endif // FLUTTER_SHELL_COMMON_SHELL_TEST_PLATFORM_VIEW_VULKAN_H_
|