38 lines
880 B
Plaintext
38 lines
880 B
Plaintext
vkDestroyShaderModule(3)
|
|
========================
|
|
|
|
Name
|
|
----
|
|
vkDestroyShaderModule - Destroy a shader module module
|
|
|
|
C Specification
|
|
---------------
|
|
|
|
include::../protos/vkDestroyShaderModule.txt[]
|
|
|
|
Parameters
|
|
----------
|
|
|
|
pname:device::
|
|
Logical device which owns the object.
|
|
|
|
pname:shaderModule::
|
|
The handle of the object to destroy.
|
|
|
|
Description
|
|
-----------
|
|
|
|
fname:vkDestroyShaderModule destroys the shader module specified in pname:shaderModule,
|
|
which must be a valid handle to a shader module owned by pname:device. An attempt to destroy
|
|
the code:VK_NULL_HANDLE handle are silently ignored. After the shader module has been
|
|
destroyed its handle becomes invalid and it should not be accessed again.
|
|
|
|
include::../validity/protos/vkDestroyShaderModule.txt[]
|
|
|
|
See Also
|
|
--------
|
|
|
|
flink:vkCreateShaderModule, flink:vkCreateShader, flink:vkDestroyShader
|
|
|
|
include::footer.txt[]
|