2020-02-03 23:23:47 +00:00
|
|
|
#include "common.h"
|
2020-01-30 08:15:10 +00:00
|
|
|
|
2020-03-26 16:40:47 +00:00
|
|
|
#include <catch2/catch.hpp>
|
2020-02-12 00:51:03 +00:00
|
|
|
|
2020-03-26 16:40:47 +00:00
|
|
|
// TODO
|
|
|
|
// Getting queues
|
|
|
|
// get dedicated vs distinct compute queues
|
|
|
|
// Swapchain creation
|
|
|
|
// Swapchain recreation
|
|
|
|
// changing present modes and/or image formats
|
2020-01-30 08:15:10 +00:00
|
|
|
|
2020-03-26 16:40:47 +00:00
|
|
|
TEST_CASE ("Instance with surface") {
|
|
|
|
GIVEN ("A window and a vulkan instance") {
|
|
|
|
|
|
|
|
auto window = create_window_glfw ();
|
|
|
|
|
|
|
|
vkb::InstanceBuilder instance_builder;
|
|
|
|
auto instance_ret = instance_builder.use_default_debug_messenger ().build ();
|
|
|
|
REQUIRE (instance_ret);
|
|
|
|
vkb::Instance instance = instance_ret.value ();
|
|
|
|
auto surface = create_surface_glfw (instance.instance, window);
|
|
|
|
|
|
|
|
GIVEN ("A default selected physical device") {
|
|
|
|
vkb::PhysicalDeviceSelector phys_device_selector (instance);
|
|
|
|
auto phys_device_ret = phys_device_selector.set_surface (surface).select ();
|
|
|
|
REQUIRE (phys_device_ret);
|
|
|
|
vkb::PhysicalDevice physical_device = phys_device_ret.value ();
|
|
|
|
|
|
|
|
GIVEN ("A device created with default parameters") {
|
|
|
|
vkb::DeviceBuilder device_builder (physical_device);
|
|
|
|
auto device_ret = device_builder.build ();
|
|
|
|
REQUIRE (device_ret);
|
|
|
|
vkb::Device device = device_ret.value ();
|
|
|
|
|
|
|
|
// possible swapchain creation...
|
|
|
|
|
|
|
|
vkb::destroy_device (device);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
THEN ("Can select physical device with customized requirements") {
|
|
|
|
vkb::PhysicalDeviceSelector selector (instance);
|
|
|
|
auto phys_dev_ret = selector.set_surface (surface)
|
|
|
|
.add_desired_extension (VK_KHR_MULTIVIEW_EXTENSION_NAME)
|
|
|
|
.add_required_extension (VK_KHR_DRIVER_PROPERTIES_EXTENSION_NAME)
|
|
|
|
.set_minimum_version (1, 0)
|
|
|
|
.set_desired_version (1, 1)
|
|
|
|
.select ();
|
|
|
|
REQUIRE (phys_dev_ret.has_value ());
|
|
|
|
}
|
|
|
|
|
|
|
|
destroy_surface (instance.instance, surface);
|
|
|
|
vkb::destroy_instance (instance);
|
|
|
|
destroy_window_glfw (window);
|
2020-01-31 22:23:22 +00:00
|
|
|
}
|
2020-01-30 08:15:10 +00:00
|
|
|
}
|
|
|
|
|
2020-03-26 16:40:47 +00:00
|
|
|
TEST_CASE ("basic instance") {
|
2020-01-31 22:23:22 +00:00
|
|
|
vkb::InstanceBuilder builder;
|
2020-01-30 08:15:10 +00:00
|
|
|
|
|
|
|
auto instance_ret =
|
2020-03-07 08:44:34 +00:00
|
|
|
builder.request_validation_layers ()
|
2020-01-30 08:15:10 +00:00
|
|
|
.set_app_name ("test")
|
|
|
|
.set_debug_callback ([] (VkDebugUtilsMessageSeverityFlagBitsEXT messageSeverity,
|
|
|
|
VkDebugUtilsMessageTypeFlagsEXT messageType,
|
|
|
|
const VkDebugUtilsMessengerCallbackDataEXT* pCallbackData,
|
2020-03-26 16:40:47 +00:00
|
|
|
void *
|
|
|
|
/*pUserData*/) -> VkBool32 {
|
2020-02-04 03:34:46 +00:00
|
|
|
auto ms = vkb::to_string_message_severity (messageSeverity);
|
|
|
|
auto mt = vkb::to_string_message_type (messageType);
|
2020-01-30 08:15:10 +00:00
|
|
|
printf ("[%s: %s](user defined)\n%s\n", ms, mt, pCallbackData->pMessage);
|
|
|
|
return VK_FALSE;
|
|
|
|
})
|
2020-03-08 07:59:58 +00:00
|
|
|
.require_api_version (1, 2, 111)
|
2020-01-30 08:15:10 +00:00
|
|
|
.build ();
|
2020-02-12 00:51:03 +00:00
|
|
|
|
2020-03-26 16:40:47 +00:00
|
|
|
REQUIRE (instance_ret.has_value ());
|
2020-01-30 08:15:10 +00:00
|
|
|
|
2020-03-26 16:40:47 +00:00
|
|
|
vkb::destroy_instance (instance_ret.value ());
|
|
|
|
}
|
2020-01-30 08:15:10 +00:00
|
|
|
|
2020-03-26 16:40:47 +00:00
|
|
|
TEST_CASE ("headless instance") {
|
2020-01-31 22:23:22 +00:00
|
|
|
vkb::InstanceBuilder builder;
|
2020-01-30 08:15:10 +00:00
|
|
|
|
2020-02-17 21:09:40 +00:00
|
|
|
auto instance_ret =
|
2020-03-07 08:44:34 +00:00
|
|
|
builder.request_validation_layers ()
|
2020-02-17 21:09:40 +00:00
|
|
|
.set_headless ()
|
|
|
|
.set_app_version (4, 5, 6)
|
|
|
|
.set_app_name ("headless")
|
|
|
|
.set_engine_name ("nick")
|
2020-03-08 07:59:58 +00:00
|
|
|
.require_api_version (1, 0, 34)
|
2020-03-07 08:44:34 +00:00
|
|
|
.use_default_debug_messenger ()
|
2020-02-17 21:09:40 +00:00
|
|
|
.add_validation_feature_enable (VkValidationFeatureEnableEXT::VK_VALIDATION_FEATURE_ENABLE_GPU_ASSISTED_EXT)
|
|
|
|
.add_validation_feature_disable (VkValidationFeatureDisableEXT::VK_VALIDATION_FEATURE_DISABLE_OBJECT_LIFETIMES_EXT)
|
|
|
|
.add_validation_disable (VkValidationCheckEXT::VK_VALIDATION_CHECK_SHADERS_EXT)
|
|
|
|
.build ();
|
2020-03-26 16:40:47 +00:00
|
|
|
REQUIRE (instance_ret.has_value ());
|
2020-02-12 00:51:03 +00:00
|
|
|
vkb::destroy_instance (instance_ret.value ());
|
2020-01-30 08:15:10 +00:00
|
|
|
}
|