Vulkan-Docs/doc/specs/vulkan/man/VkPipelineLayoutCreateInfo.txt

72 lines
2.1 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/
VkPipelineLayoutCreateInfo(3)
=============================
Name
----
VkPipelineLayoutCreateInfo - Structure specifying the parameters of a newly created pipeline layout object.
C Specification
---------------
// refBegin VkPipelineLayoutCreateInfo Structure specifying the parameters of a newly created pipeline layout object.
The slink:VkPipelineLayoutCreateInfo structure is defined as:
include::../api/structs/VkPipelineLayoutCreateInfo.txt[]
Members
-------
* pname:sType is the type of this structure.
* pname:pNext is `NULL` or a pointer to an extension-specific structure.
* pname:flags is reserved for future use.
* pname:setLayoutCount is the number of descriptor sets included in
the pipeline layout.
* pname:pSetLayouts is a pointer to an array of
sname:VkDescriptorSetLayout objects.
* pname:pushConstantRangeCount is the number of push constant ranges
included in the pipeline layout.
* pname:pPushConstantRanges is a pointer to an array of
sname:VkPushConstantRange structures defining a set of push constant
ranges for use in a single pipeline layout. In addition to descriptor
set layouts, a pipeline layout also describes how many push constants
can: be accessed by each stage of the pipeline.
+
[NOTE]
.Note
====
Push constants represent a high speed path to modify constant data in
pipelines that is expected to outperform memory-backed resource updates.
====
Description
-----------
include::../validity/structs/VkPipelineLayoutCreateInfo.txt[]
See Also
--------
slink:VkDescriptorSetLayout, elink:VkPipelineLayoutCreateFlags, slink:VkPushConstantRange, elink:VkStructureType, flink:vkCreatePipelineLayout
Document Notes
--------------
For more information, see the Vulkan Specification at URL
https://www.khronos.org/registry/vulkan/specs/1.0/xhtml/vkspec.html#VkPipelineLayoutCreateInfo
This page is extracted from the Vulkan Specification.
Fixes and changes should be made to the Specification,not directly.
include::footer.txt[]