Enable required extension

This commit is contained in:
George Wright 2020-03-26 12:17:44 -07:00 committed by George Wright
parent 7e7bf38117
commit 05390d1871

View File

@ -60,7 +60,9 @@ ShellTestPlatformViewVulkan::OffScreenSurface::OffScreenSurface(
}
// Create the application instance.
std::vector<std::string> extensions = {};
std::vector<std::string> extensions = {
VK_KHR_EXTERNAL_SEMAPHORE_CAPABILITIES_EXTENSION_NAME,
};
application_ = std::make_unique<vulkan::VulkanApplication>(
*vk_, "FlutterTest", std::move(extensions));