我正在通过这个教程学习 Vulkan。我已经用 GLFW 创建了窗口,并且成功初始化了 Vulkan 实例,没有出现错误。但 Vulkan 在创建 VKSurfaceKHR 时失败了。
bool CreateRenderContext(RenderContext* contextOut)
{
glfwInit();
glfwWindowHint(GLFW_CLIENT_API, GLFW_NO_API);
glfwWindowHint(GLFW_RESIZABLE, GLFW_FALSE);
contextOut->window = glfwCreateWindow(contextOut->width, contextOut->height, "Vulkan", NULL, NULL);
if(!CreateVulkanInstance(contextOut->instance))
{
printf("failed creating vulkan instance\n");
}
if(!glfwVulkanSupported())
{
return false;
}
VkResult err = glfwCreateWindowSurface(contextOut->instance, contextOut->window,nullptr, &contextOut->surface);
if (err != VK_SUCCESS)
{
// 窗口表面创建失败
printf("failed to create surface");
return false;
}
return true;
}
CreateVulkanInstance()
函数如下:
bool CreateVulkanInstance(VkInstance instanceOut)
{
VkApplicationInfo appInfo = {};
appInfo.sType = VK_STRUCTURE_TYPE_APPLICATION_INFO;
appInfo.pApplicationName = "Hello Triangle";
appInfo.applicationVersion = VK_MAKE_VERSION(1, 0, 0);
appInfo.pEngineName = "No Engine";
appInfo.engineVersion = VK_MAKE_VERSION(1, 0, 0);
appInfo.apiVersion = VK_API_VERSION_1_0;
VkInstanceCreateInfo createInfo = {};
createInfo.sType = VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO;
createInfo.pApplicationInfo = &appInfo;
uint32_t glfwExtensionCount = 0;
const char** glfwExtensions = nullptr;
glfwExtensions = glfwGetRequiredInstanceExtensions(&glfwExtensionCount);
createInfo.enabledExtensionCount = glfwExtensionCount;
createInfo.ppEnabledExtensionNames = glfwExtensions;
createInfo.enabledLayerCount = 0;
if (vkCreateInstance(&createInfo, nullptr, &instanceOut) != VK_SUCCESS)
{
return false;
}
return true;
}
GLFW 返回了以下所需的扩展:
VK_KHR_surface
VK_KHR_xcb_surface
但 VkResult err = glfwCreateWindowSurface(contextOut->instance, contextOut->window,nullptr, &contextOut->surface);
返回了 VK_ERROR_EXTENSION_NOT_PRESENT
。
为什么表面创建会失败?
我的系统:Ubuntu 18.04 64位,NVIDIA RTX 3000,GPU 驱动 NVIDIA 430。