Struct VulkanCreateInfo
Options to create a Vulkan instance.
struct VulkanCreateInfo
;
Fields
Name | Type | Description |
---|---|---|
appName
|
string | Application name and version. |
appVersion
|
VulkanVersion | Application 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. |