7#include "flutter/fml/paths.h"
10#define GLFW_INCLUDE_VULKAN
11#include <GLFW/glfw3.h>
13#include "flutter/fml/logging.h"
14#include "flutter/fml/mapping.h"
15#include "impeller/entity/vk/entity_shaders_vk.h"
16#include "impeller/entity/vk/framebuffer_blend_shaders_vk.h"
17#include "impeller/entity/vk/modern_shaders_vk.h"
18#include "impeller/fixtures/vk/fixtures_shaders_vk.h"
19#include "impeller/playground/imgui/vk/imgui_shaders_vk.h"
25#include "impeller/renderer/vk/compute_shaders_vk.h"
26#include "impeller/scene/shaders/vk/scene_shaders_vk.h"
30static std::vector<std::shared_ptr<fml::Mapping>>
33 std::make_shared<fml::NonOwnedMapping>(impeller_entity_shaders_vk_data,
34 impeller_entity_shaders_vk_length),
35 std::make_shared<fml::NonOwnedMapping>(impeller_modern_shaders_vk_data,
36 impeller_modern_shaders_vk_length),
37 std::make_shared<fml::NonOwnedMapping>(
38 impeller_framebuffer_blend_shaders_vk_data,
39 impeller_framebuffer_blend_shaders_vk_length),
40 std::make_shared<fml::NonOwnedMapping>(
41 impeller_fixtures_shaders_vk_data,
42 impeller_fixtures_shaders_vk_length),
43 std::make_shared<fml::NonOwnedMapping>(impeller_imgui_shaders_vk_data,
44 impeller_imgui_shaders_vk_length),
45 std::make_shared<fml::NonOwnedMapping>(impeller_scene_shaders_vk_data,
46 impeller_scene_shaders_vk_length),
47 std::make_shared<fml::NonOwnedMapping>(
48 impeller_compute_shaders_vk_data, impeller_compute_shaders_vk_length),
52vk::UniqueInstance PlaygroundImplVK::global_instance_;
54void PlaygroundImplVK::DestroyWindowHandle(WindowHandle handle) {
58 ::glfwDestroyWindow(
reinterpret_cast<GLFWwindow*
>(handle));
65 InitGlobalVulkanInstance();
67 ::glfwDefaultWindowHints();
68 ::glfwWindowHint(GLFW_CLIENT_API, GLFW_NO_API);
71 auto window = ::glfwCreateWindow(1, 1,
"Test",
nullptr,
nullptr);
87 &::glfwGetInstanceProcAddress);
96 if (!context_vk || !context_vk->IsValid()) {
97 VALIDATION_LOG <<
"Could not create Vulkan context in the playground.";
101 VkSurfaceKHR vk_surface;
102 auto res = vk::Result{::glfwCreateWindowSurface(
103 context_vk->GetInstance(),
108 if (res != vk::Result::eSuccess) {
114 vk::UniqueSurfaceKHR
surface{vk_surface, context_vk->GetInstance()};
115 auto context = context_vk->CreateSurfaceContext();
116 if (!context->SetWindowSurface(std::move(
surface), size_)) {
121 context_ = std::move(context);
127std::shared_ptr<Context> PlaygroundImplVK::GetContext()
const {
133 return handle_.get();
137std::unique_ptr<Surface> PlaygroundImplVK::AcquireSurfaceFrame(
138 std::shared_ptr<Context> context) {
139 SurfaceContextVK* surface_context_vk =
140 reinterpret_cast<SurfaceContextVK*
>(context_.get());
144 ::glfwGetFramebufferSize(
reinterpret_cast<GLFWwindow*
>(handle_.get()), &
width,
149 return surface_context_vk->AcquireNextSurface();
160void PlaygroundImplVK::InitGlobalVulkanInstance() {
161 if (global_instance_) {
165 VULKAN_HPP_DEFAULT_DISPATCHER.init(::glfwGetInstanceProcAddress);
167 vk::ApplicationInfo application_info;
171 application_info.setPEngineName(
"PlaygroundImplVK");
172 application_info.setPApplicationName(
"PlaygroundImplVK");
174 auto caps = std::shared_ptr<CapabilitiesVK>(
175 new CapabilitiesVK(
true));
178 std::optional<std::vector<std::string>> enabled_layers =
179 caps->GetEnabledLayers();
180 std::optional<std::vector<std::string>> enabled_extensions =
181 caps->GetEnabledInstanceExtensions();
182 FML_DCHECK(enabled_layers.has_value() && enabled_extensions.has_value());
184 std::vector<const char*> enabled_layers_c;
185 std::vector<const char*> enabled_extensions_c;
187 if (enabled_layers.has_value()) {
188 for (
const auto& layer : enabled_layers.value()) {
189 enabled_layers_c.push_back(layer.c_str());
193 if (enabled_extensions.has_value()) {
194 for (
const auto&
ext : enabled_extensions.value()) {
195 enabled_extensions_c.push_back(
ext.c_str());
199 vk::InstanceCreateFlags instance_flags = {};
200 instance_flags |= vk::InstanceCreateFlagBits::eEnumeratePortabilityKHR;
201 vk::InstanceCreateInfo instance_info;
202 instance_info.setPEnabledLayerNames(enabled_layers_c);
203 instance_info.setPEnabledExtensionNames(enabled_extensions_c);
204 instance_info.setPApplicationInfo(&application_info);
205 instance_info.setFlags(instance_flags);
206 auto instance_result = vk::createInstanceUnique(instance_info);
207 FML_CHECK(instance_result.result == vk::Result::eSuccess)
208 <<
"Unable to initialize global Vulkan instance";
209 global_instance_ = std::move(instance_result.value);
213 const std::shared_ptr<Capabilities>& capabilities) {
216 "PlaygroundImplVK doesn't support setting the capabilities.");
220 if (::glfwVulkanSupported()) {
224 FML_LOG(
ERROR) <<
"Attempting to initialize a Vulkan playground on macOS "
225 "where Vulkan cannot be found. It can be installed via "
226 "MoltenVK and make sure to install it globally so "
227 "dlopen can find it.";
229 FML_LOG(
ERROR) <<
"Attempting to initialize a Vulkan playground on a system "
230 "that does not support Vulkan.";
static std::shared_ptr< ContextVK > Create(Settings settings)
fml::Status SetCapabilities(const std::shared_ptr< Capabilities > &capabilities) override
static bool IsVulkanDriverPresent()
PlaygroundImplVK(PlaygroundSwitches switches)
const PlaygroundSwitches switches_
#define FML_LOG(severity)
#define FML_CHECK(condition)
#define FML_DCHECK(condition)
fml::UniqueFD GetCachesDirectory()
static std::vector< std::shared_ptr< fml::Mapping > > ShaderLibraryMappingsForPlayground()
static SkString to_string(int n)
std::vector< std::shared_ptr< fml::Mapping > > shader_libraries_data
PFN_vkGetInstanceProcAddr proc_address_callback
bool fatal_missing_validations
If validations are requested but cannot be enabled, log a fatal error.
fml::UniqueFD cache_directory
bool enable_vulkan_validation
#define VK_API_VERSION_1_0
PFN_vkVoidFunction(VKAPI_PTR * PFN_vkGetInstanceProcAddr)(VkInstance instance, const char *pName)
#define VK_API_VERSION_1_1