38 lines
902 B
Plaintext
38 lines
902 B
Plaintext
|
vkDestroyFramebuffer(3)
|
||
|
=======================
|
||
|
|
||
|
Name
|
||
|
----
|
||
|
vkDestroyFramebuffer - Destroy a framebuffer object
|
||
|
|
||
|
C Specification
|
||
|
---------------
|
||
|
|
||
|
include::../protos/vkDestroyFramebuffer.txt[]
|
||
|
|
||
|
Parameters
|
||
|
----------
|
||
|
|
||
|
pname:device::
|
||
|
Logical device which owns the object.
|
||
|
|
||
|
pname:framebuffer::
|
||
|
The handle of the object to destroy.
|
||
|
|
||
|
Description
|
||
|
-----------
|
||
|
|
||
|
fname:vkDestroyFramebuffer destroys the framebuffer object whose handle is specified in
|
||
|
pname:framebuffer. pname:framebuffer must be a valid handle to framebuffer object created
|
||
|
through a successful call to flink:vkCreateFramebuffer on pname:device. Attempts to destroy
|
||
|
code:VK_NULL_HANDLE are silently ignored. After a framebuffer object has been destroyed,
|
||
|
its handle becomes invalid and must not be accessed again.
|
||
|
|
||
|
include::../validity/protos/vkDestroyFramebuffer.txt[]
|
||
|
|
||
|
See Also
|
||
|
--------
|
||
|
|
||
|
flink:vkCreateFramebuffer
|
||
|
|
||
|
include::footer.txt[]
|