Show / Hide Table of Contents

Struct VulkanDeviceOptions

A structure describing Vulkan-specific device creation options.

Inherited Members
System.ValueType.Equals(System.Object)
System.ValueType.GetHashCode()
System.ValueType.ToString()
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetType()
Namespace: Veldrid
Assembly: cs.temp.dll.dll
Syntax
public struct VulkanDeviceOptions

Constructors

VulkanDeviceOptions(String[], String[])

Constructs a new VulkanDeviceOptions.

Declaration
public VulkanDeviceOptions(string[] instanceExtensions, string[] deviceExtensions)
Parameters
Type Name Description
System.String[] instanceExtensions

An array of required Vulkan instance extensions. Entries in this array will be enabled in the GraphicsDevice's created VkInstance.

System.String[] deviceExtensions

An array of required Vulkan device extensions. Entries in this array will be enabled in the GraphicsDevice's created VkDevice.

Fields

DeviceExtensions

An array of required Vulkan device extensions. Entries in this array will be enabled in the GraphicsDevice's created VkDevice.

Declaration
public string[] DeviceExtensions
Field Value
Type Description
System.String[]

InstanceExtensions

An array of required Vulkan instance extensions. Entries in this array will be enabled in the GraphicsDevice's created VkInstance.

Declaration
public string[] InstanceExtensions
Field Value
Type Description
System.String[]
Back to top