mirror of
https://github.com/status-im/Vulkan-Docs.git
synced 2025-02-22 11:08:19 +00:00
42 lines
967 B
Plaintext
42 lines
967 B
Plaintext
|
vkCreateImage(3)
|
||
|
=================
|
||
|
|
||
|
Name
|
||
|
----
|
||
|
vkCreateImage - Create a new image object.
|
||
|
|
||
|
C Specification
|
||
|
---------------
|
||
|
|
||
|
include::../protos/vkCreateImage.txt[]
|
||
|
|
||
|
Parameters
|
||
|
----------
|
||
|
|
||
|
pname:device::
|
||
|
A handle to the device with which to create the image.
|
||
|
|
||
|
pname:pCreateInfo::
|
||
|
A pointer to a slink:VkImageCreateInfo structure specifying the properties of the new image.
|
||
|
|
||
|
pname:pImage::
|
||
|
A pointer to a variable to receive the handle to the resulting image.
|
||
|
|
||
|
Description
|
||
|
-----------
|
||
|
|
||
|
fname:vkCreateImage creates a new image object and places the resulting handle in the variable pointed
|
||
|
to by pname:pImage. The properties of the new image are specified in an instance of a slink:VkImageCreateInfo
|
||
|
structure whose address is given in pname:pCreateInfo. The definition of slink:VkImageCreateInfo is:
|
||
|
|
||
|
include::../structs/VkImageCreateInfo.txt[]
|
||
|
|
||
|
include::../validity/protos/vkCreateImage.txt[]
|
||
|
|
||
|
See Also
|
||
|
--------
|
||
|
|
||
|
flink:vkCreateSampler
|
||
|
|
||
|
include::footer.txt[]
|