Enum Class VulkanDescriptorType
- All Implemented Interfaces:
VulkanEnumIntegerType
,Serializable
,Comparable<VulkanDescriptorType>
,Constable
public enum VulkanDescriptorType
extends Enum<VulkanDescriptorType>
implements VulkanEnumIntegerType
Specifies the type of a descriptor in a descriptor set.
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionSpecifies a combined image sampler descriptorSpecifies an input attachment descriptorSpecifies a sampled image descriptorSpecifies a sampler descriptorSpecifies a storage buffer descriptorSpecifies a dynamic storage buffer descriptorSpecifies a storage image descriptorSpecifies a storage texel buffer descriptorSpecifies a uniform buffer descriptorSpecifies a dynamic uniform buffer descriptorSpecifies a uniform texel buffer descriptor -
Method Summary
Modifier and TypeMethodDescriptionint
value()
static VulkanDescriptorType
Returns the enum constant of this class with the specified name.static VulkanDescriptorType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
VK_DESCRIPTOR_TYPE_SAMPLER
Specifies a sampler descriptor -
VK_DESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER
Specifies a combined image sampler descriptor -
VK_DESCRIPTOR_TYPE_SAMPLED_IMAGE
Specifies a sampled image descriptor -
VK_DESCRIPTOR_TYPE_STORAGE_IMAGE
Specifies a storage image descriptor -
VK_DESCRIPTOR_TYPE_UNIFORM_TEXEL_BUFFER
Specifies a uniform texel buffer descriptor -
VK_DESCRIPTOR_TYPE_STORAGE_TEXEL_BUFFER
Specifies a storage texel buffer descriptor -
VK_DESCRIPTOR_TYPE_UNIFORM_BUFFER
Specifies a uniform buffer descriptor -
VK_DESCRIPTOR_TYPE_STORAGE_BUFFER
Specifies a storage buffer descriptor -
VK_DESCRIPTOR_TYPE_UNIFORM_BUFFER_DYNAMIC
Specifies a dynamic uniform buffer descriptor -
VK_DESCRIPTOR_TYPE_STORAGE_BUFFER_DYNAMIC
Specifies a dynamic storage buffer descriptor -
VK_DESCRIPTOR_TYPE_INPUT_ATTACHMENT
Specifies an input attachment descriptor
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-
value
public int value()- Specified by:
value
in interfaceVulkanEnumIntegerType
- Returns:
- The integer value of the constant
-