37 lines
877 B
Plaintext
37 lines
877 B
Plaintext
vkDestroyPipelineLayout(3)
|
|
==========================
|
|
|
|
Name
|
|
----
|
|
vkDestroyPipelineLayout - Destroy a pipeline layout object
|
|
|
|
C Specification
|
|
---------------
|
|
|
|
include::../protos/vkDestroyPipelineLayout.txt[]
|
|
|
|
Parameters
|
|
----------
|
|
|
|
pname:device::
|
|
Logical device which owns the object.
|
|
|
|
pname:pipelineLayout::
|
|
The handle of the object to destroy.
|
|
|
|
Description
|
|
-----------
|
|
|
|
fname:vkDestroyPipelineLayout destroys the pipeline layout object whose handle is specified in
|
|
pname:pipelineLayout, which must be a valid handle to a pipeline layout that was created by
|
|
pname:device. Attempts to destroy code:VK_NULL_HANDLE are silently ignored. After a pipeline layout
|
|
has been destroyed, its handle becomes invalid and should not be accessed again.
|
|
|
|
include::../validity/protos/vkDestroyPipelineLayout.txt[]
|
|
|
|
See Also
|
|
--------
|
|
|
|
flink:vkCreatePipelineLayout
|
|
|
|
include::footer.txt[] |