56 lines
1.4 KiB
Plaintext
56 lines
1.4 KiB
Plaintext
|
vkCmdResolveImage(3)
|
||
|
=====================
|
||
|
|
||
|
Name
|
||
|
----
|
||
|
vkCmdResolveImage - Resolve regions of an image.
|
||
|
|
||
|
C Specification
|
||
|
---------------
|
||
|
|
||
|
include::../protos/vkCmdResolveImage.txt[]
|
||
|
|
||
|
Parameters
|
||
|
----------
|
||
|
|
||
|
pname:commandBuffer::
|
||
|
Ths command buffer into which the command is to be placed.
|
||
|
|
||
|
pname:srcImage::
|
||
|
The image that is the source of the resolve operation.
|
||
|
|
||
|
pname:srcImageLayout::
|
||
|
The layout of the source image at the time of the resolve.
|
||
|
|
||
|
pname:dstImage::
|
||
|
The image into which image data is to be resolved.
|
||
|
|
||
|
pname:dstImageLayout::
|
||
|
The layout of the destination image at the time of the resolve.
|
||
|
|
||
|
pname:regionCount::
|
||
|
The number of regions to resolve.
|
||
|
|
||
|
pname:pRegions::
|
||
|
An array of image regions to resolve.
|
||
|
|
||
|
Description
|
||
|
-----------
|
||
|
|
||
|
fname:vkCmdResolveImage resolves regions of a source image into a destination image.
|
||
|
The source and destination images are specified in pname:srcImage and pname:dstImage, respectively.
|
||
|
The layout of the source and destination images must be provided in pname:srcImageLayout and
|
||
|
pname:dstImageLayout, respectively. pname:pRegions is a pointer to an array of pname:regionCount slink:VkImageResolve
|
||
|
structures, the definition of each is:
|
||
|
|
||
|
include::../structs/VkImageResolve.txt[]
|
||
|
|
||
|
include::../validity/protos/vkCmdResolveImage.txt[]
|
||
|
|
||
|
See Also
|
||
|
--------
|
||
|
|
||
|
flink:vkCmdBlitImage, flink:vkCmdClearColorImage, flink:vkCmdClearDepthStencilImage
|
||
|
|
||
|
include::footer.txt[]
|