Struct VulkanCreateInfo

Options to create a Vulkan instance.

struct VulkanCreateInfo ;

Fields

NameTypeDescription
appName stringApplication name and version.
appVersion VulkanVersionApplication name and version.
mandatoryExtensions const(string)[]Mandatory extensions that are needed by the application. Instance creation will fail if one is not present.
mandatoryLayers const(string)[]Mandatory layers that are needed by the application. Instance creation will fail if one is not present.
optionalExtensions const(string)[]Optional extensions that will be enabled if present.
optionalLayers const(string)[]Optional layers that will be enabled if present.