58 lines
1.5 KiB
Plaintext
58 lines
1.5 KiB
Plaintext
// Copyright (c) 2014-2016 Khronos Group. This work is licensed under a
|
|
// Creative Commons Attribution 4.0 International License; see
|
|
// http://creativecommons.org/licenses/by/4.0/
|
|
|
|
VkVertexInputAttributeDescription(3)
|
|
====================================
|
|
|
|
Name
|
|
----
|
|
VkVertexInputAttributeDescription - Structure specifying vertex input attribute description
|
|
|
|
C Specification
|
|
---------------
|
|
|
|
// refBegin VkVertexInputAttributeDescription - Structure specifying vertex input attribute description
|
|
|
|
The sname:VkVertexInputAttributeDescription structure is defined as:
|
|
|
|
include::../structs/VkVertexInputAttributeDescription.txt[]
|
|
|
|
|
|
Members
|
|
-------
|
|
|
|
* pname:location is the shader binding location number for this
|
|
attribute.
|
|
* pname:binding is the binding number which this attribute takes
|
|
its data from.
|
|
* pname:format is the size and type of the vertex attribute data.
|
|
* pname:offset is a byte offset of this attribute relative
|
|
to the start of an element in the vertex input binding.
|
|
|
|
|
|
Description
|
|
-----------
|
|
|
|
include::../validity/structs/VkVertexInputAttributeDescription.txt[]
|
|
|
|
|
|
See Also
|
|
--------
|
|
|
|
elink:VkFormat, slink:VkPipelineVertexInputStateCreateInfo
|
|
|
|
|
|
Document Notes
|
|
--------------
|
|
|
|
For more information, see the Vulkan Specification at URL
|
|
|
|
https://www.khronos.org/registry/vulkan/specs/1.0/xhtml/vkspec.html#VkVertexInputAttributeDescription
|
|
|
|
This page is extracted from the Vulkan Specification.
|
|
Fixes and changes should be made to the Specification,not directly.
|
|
|
|
include::footer.txt[]
|
|
|