You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
277 B

// Copyright 2019-2021 The Khronos Group Inc.
//
// SPDX-License-Identifier: Apache-2.0
#include <vulkan/vulkan.hpp>
int main()
{
auto const instance_info = vk::InstanceCreateInfo();
vk::Instance instance;
vk::createInstance(&instance_info, nullptr, &instance);
}