Class VkVertexInputAttributeDescription

java.lang.Object
org.lwjgl.system.Pointer.Default
org.lwjgl.system.Struct<VkVertexInputAttributeDescription>
org.lwjgl.vulkan.VkVertexInputAttributeDescription
All Implemented Interfaces:
AutoCloseable, org.lwjgl.system.NativeResource, org.lwjgl.system.Pointer

public class VkVertexInputAttributeDescription extends org.lwjgl.system.Struct<VkVertexInputAttributeDescription> implements org.lwjgl.system.NativeResource
Structure specifying vertex input attribute description.
Valid Usage
Valid Usage (Implicit)
  • format must be a valid VkFormat value
See Also

VkPipelineVertexInputStateCreateInfo

Layout


 struct VkVertexInputAttributeDescription {
     uint32_t location();
     uint32_t binding();
     VkFormat format();
     uint32_t offset();
 }