Safe Haskell | None |
---|---|
Language | Haskell2010 |
Synopsis
- cmdBindPipeline :: forall io. MonadIO io => CommandBuffer -> PipelineBindPoint -> Pipeline -> io ()
- cmdSetViewport :: forall io. MonadIO io => CommandBuffer -> ("firstViewport" ::: Word32) -> ("viewports" ::: Vector Viewport) -> io ()
- cmdSetScissor :: forall io. MonadIO io => CommandBuffer -> ("firstScissor" ::: Word32) -> ("scissors" ::: Vector Rect2D) -> io ()
- cmdSetLineWidth :: forall io. MonadIO io => CommandBuffer -> ("lineWidth" ::: Float) -> io ()
- cmdSetDepthBias :: forall io. MonadIO io => CommandBuffer -> ("depthBiasConstantFactor" ::: Float) -> ("depthBiasClamp" ::: Float) -> ("depthBiasSlopeFactor" ::: Float) -> io ()
- cmdSetBlendConstants :: forall io. MonadIO io => CommandBuffer -> ("blendConstants" ::: (Float, Float, Float, Float)) -> io ()
- cmdSetDepthBounds :: forall io. MonadIO io => CommandBuffer -> ("minDepthBounds" ::: Float) -> ("maxDepthBounds" ::: Float) -> io ()
- cmdSetStencilCompareMask :: forall io. MonadIO io => CommandBuffer -> ("faceMask" ::: StencilFaceFlags) -> ("compareMask" ::: Word32) -> io ()
- cmdSetStencilWriteMask :: forall io. MonadIO io => CommandBuffer -> ("faceMask" ::: StencilFaceFlags) -> ("writeMask" ::: Word32) -> io ()
- cmdSetStencilReference :: forall io. MonadIO io => CommandBuffer -> ("faceMask" ::: StencilFaceFlags) -> ("reference" ::: Word32) -> io ()
- cmdBindDescriptorSets :: forall io. MonadIO io => CommandBuffer -> PipelineBindPoint -> PipelineLayout -> ("firstSet" ::: Word32) -> ("descriptorSets" ::: Vector DescriptorSet) -> ("dynamicOffsets" ::: Vector Word32) -> io ()
- cmdBindIndexBuffer :: forall io. MonadIO io => CommandBuffer -> Buffer -> ("offset" ::: DeviceSize) -> IndexType -> io ()
- cmdBindVertexBuffers :: forall io. MonadIO io => CommandBuffer -> ("firstBinding" ::: Word32) -> ("buffers" ::: Vector Buffer) -> ("offsets" ::: Vector DeviceSize) -> io ()
- cmdDraw :: forall io. MonadIO io => CommandBuffer -> ("vertexCount" ::: Word32) -> ("instanceCount" ::: Word32) -> ("firstVertex" ::: Word32) -> ("firstInstance" ::: Word32) -> io ()
- cmdDrawIndexed :: forall io. MonadIO io => CommandBuffer -> ("indexCount" ::: Word32) -> ("instanceCount" ::: Word32) -> ("firstIndex" ::: Word32) -> ("vertexOffset" ::: Int32) -> ("firstInstance" ::: Word32) -> io ()
- cmdDrawIndirect :: forall io. MonadIO io => CommandBuffer -> Buffer -> ("offset" ::: DeviceSize) -> ("drawCount" ::: Word32) -> ("stride" ::: Word32) -> io ()
- cmdDrawIndexedIndirect :: forall io. MonadIO io => CommandBuffer -> Buffer -> ("offset" ::: DeviceSize) -> ("drawCount" ::: Word32) -> ("stride" ::: Word32) -> io ()
- cmdDispatch :: forall io. MonadIO io => CommandBuffer -> ("groupCountX" ::: Word32) -> ("groupCountY" ::: Word32) -> ("groupCountZ" ::: Word32) -> io ()
- cmdDispatchIndirect :: forall io. MonadIO io => CommandBuffer -> Buffer -> ("offset" ::: DeviceSize) -> io ()
- cmdCopyBuffer :: forall io. MonadIO io => CommandBuffer -> ("srcBuffer" ::: Buffer) -> ("dstBuffer" ::: Buffer) -> ("regions" ::: Vector BufferCopy) -> io ()
- cmdCopyImage :: forall io. MonadIO io => CommandBuffer -> ("srcImage" ::: Image) -> ("srcImageLayout" ::: ImageLayout) -> ("dstImage" ::: Image) -> ("dstImageLayout" ::: ImageLayout) -> ("regions" ::: Vector ImageCopy) -> io ()
- cmdBlitImage :: forall io. MonadIO io => CommandBuffer -> ("srcImage" ::: Image) -> ("srcImageLayout" ::: ImageLayout) -> ("dstImage" ::: Image) -> ("dstImageLayout" ::: ImageLayout) -> ("regions" ::: Vector ImageBlit) -> Filter -> io ()
- cmdCopyBufferToImage :: forall io. MonadIO io => CommandBuffer -> ("srcBuffer" ::: Buffer) -> ("dstImage" ::: Image) -> ("dstImageLayout" ::: ImageLayout) -> ("regions" ::: Vector BufferImageCopy) -> io ()
- cmdCopyImageToBuffer :: forall io. MonadIO io => CommandBuffer -> ("srcImage" ::: Image) -> ("srcImageLayout" ::: ImageLayout) -> ("dstBuffer" ::: Buffer) -> ("regions" ::: Vector BufferImageCopy) -> io ()
- cmdUpdateBuffer :: forall io. MonadIO io => CommandBuffer -> ("dstBuffer" ::: Buffer) -> ("dstOffset" ::: DeviceSize) -> ("dataSize" ::: DeviceSize) -> ("data" ::: Ptr ()) -> io ()
- cmdFillBuffer :: forall io. MonadIO io => CommandBuffer -> ("dstBuffer" ::: Buffer) -> ("dstOffset" ::: DeviceSize) -> DeviceSize -> ("data" ::: Word32) -> io ()
- cmdClearColorImage :: forall io. MonadIO io => CommandBuffer -> Image -> ImageLayout -> ClearColorValue -> ("ranges" ::: Vector ImageSubresourceRange) -> io ()
- cmdClearDepthStencilImage :: forall io. MonadIO io => CommandBuffer -> Image -> ImageLayout -> ClearDepthStencilValue -> ("ranges" ::: Vector ImageSubresourceRange) -> io ()
- cmdClearAttachments :: forall io. MonadIO io => CommandBuffer -> ("attachments" ::: Vector ClearAttachment) -> ("rects" ::: Vector ClearRect) -> io ()
- cmdResolveImage :: forall io. MonadIO io => CommandBuffer -> ("srcImage" ::: Image) -> ("srcImageLayout" ::: ImageLayout) -> ("dstImage" ::: Image) -> ("dstImageLayout" ::: ImageLayout) -> ("regions" ::: Vector ImageResolve) -> io ()
- cmdSetEvent :: forall io. MonadIO io => CommandBuffer -> Event -> ("stageMask" ::: PipelineStageFlags) -> io ()
- cmdResetEvent :: forall io. MonadIO io => CommandBuffer -> Event -> ("stageMask" ::: PipelineStageFlags) -> io ()
- cmdWaitEvents :: forall io. MonadIO io => CommandBuffer -> ("events" ::: Vector Event) -> ("srcStageMask" ::: PipelineStageFlags) -> ("dstStageMask" ::: PipelineStageFlags) -> ("memoryBarriers" ::: Vector MemoryBarrier) -> ("bufferMemoryBarriers" ::: Vector BufferMemoryBarrier) -> ("imageMemoryBarriers" ::: Vector (SomeStruct ImageMemoryBarrier)) -> io ()
- cmdPipelineBarrier :: forall io. MonadIO io => CommandBuffer -> ("srcStageMask" ::: PipelineStageFlags) -> ("dstStageMask" ::: PipelineStageFlags) -> DependencyFlags -> ("memoryBarriers" ::: Vector MemoryBarrier) -> ("bufferMemoryBarriers" ::: Vector BufferMemoryBarrier) -> ("imageMemoryBarriers" ::: Vector (SomeStruct ImageMemoryBarrier)) -> io ()
- cmdBeginQuery :: forall io. MonadIO io => CommandBuffer -> QueryPool -> ("query" ::: Word32) -> QueryControlFlags -> io ()
- cmdUseQuery :: forall io r. MonadIO io => CommandBuffer -> QueryPool -> Word32 -> QueryControlFlags -> io r -> io r
- cmdEndQuery :: forall io. MonadIO io => CommandBuffer -> QueryPool -> ("query" ::: Word32) -> io ()
- cmdResetQueryPool :: forall io. MonadIO io => CommandBuffer -> QueryPool -> ("firstQuery" ::: Word32) -> ("queryCount" ::: Word32) -> io ()
- cmdWriteTimestamp :: forall io. MonadIO io => CommandBuffer -> PipelineStageFlagBits -> QueryPool -> ("query" ::: Word32) -> io ()
- cmdCopyQueryPoolResults :: forall io. MonadIO io => CommandBuffer -> QueryPool -> ("firstQuery" ::: Word32) -> ("queryCount" ::: Word32) -> ("dstBuffer" ::: Buffer) -> ("dstOffset" ::: DeviceSize) -> ("stride" ::: DeviceSize) -> QueryResultFlags -> io ()
- cmdPushConstants :: forall io. MonadIO io => CommandBuffer -> PipelineLayout -> ShaderStageFlags -> ("offset" ::: Word32) -> ("size" ::: Word32) -> ("values" ::: Ptr ()) -> io ()
- cmdBeginRenderPass :: forall a io. (Extendss RenderPassBeginInfo a, PokeChain a, MonadIO io) => CommandBuffer -> RenderPassBeginInfo a -> SubpassContents -> io ()
- cmdUseRenderPass :: forall a io r. (Extendss RenderPassBeginInfo a, PokeChain a, MonadIO io) => CommandBuffer -> RenderPassBeginInfo a -> SubpassContents -> io r -> io r
- cmdNextSubpass :: forall io. MonadIO io => CommandBuffer -> SubpassContents -> io ()
- cmdEndRenderPass :: forall io. MonadIO io => CommandBuffer -> io ()
- cmdExecuteCommands :: forall io. MonadIO io => CommandBuffer -> ("commandBuffers" ::: Vector CommandBuffer) -> io ()
- data Viewport = Viewport {}
- data Rect2D = Rect2D {}
- data ClearRect = ClearRect {
- rect :: Rect2D
- baseArrayLayer :: Word32
- layerCount :: Word32
- data BufferCopy = BufferCopy {}
- data ImageCopy = ImageCopy {}
- data ImageBlit = ImageBlit {}
- data BufferImageCopy = BufferImageCopy {}
- data ImageResolve = ImageResolve {}
- data RenderPassBeginInfo (es :: [Type]) = RenderPassBeginInfo {
- next :: Chain es
- renderPass :: RenderPass
- framebuffer :: Framebuffer
- renderArea :: Rect2D
- clearValues :: Vector ClearValue
- data ClearAttachment = ClearAttachment {}
Documentation
cmdBindPipeline :: forall io. MonadIO io => CommandBuffer -> PipelineBindPoint -> Pipeline -> io () Source #
vkCmdBindPipeline - Bind a pipeline object to a command buffer
Parameters
commandBuffer
is the command buffer that the pipeline will be bound to.
pipelineBindPoint
is aPipelineBindPoint
value specifying whether to bind to the compute or graphics bind point. Binding one does not disturb the other.pipeline
is the pipeline to be bound.
Description
Once bound, a pipeline binding affects subsequent graphics or compute
commands in the command buffer until a different pipeline is bound to
the bind point. The pipeline bound to
PIPELINE_BIND_POINT_COMPUTE
controls the behavior of cmdDispatch
and cmdDispatchIndirect
. The
pipeline bound to
PIPELINE_BIND_POINT_GRAPHICS
controls the behavior of all
drawing commands.
The pipeline bound to
PIPELINE_BIND_POINT_RAY_TRACING_KHR
controls the behavior of
cmdTraceRaysKHR
. No other
commands are affected by the pipeline state.
Valid Usage
- If
pipelineBindPoint
isPIPELINE_BIND_POINT_COMPUTE
, theCommandPool
thatcommandBuffer
was allocated from must support compute operations
- If
pipelineBindPoint
isPIPELINE_BIND_POINT_GRAPHICS
, theCommandPool
thatcommandBuffer
was allocated from must support graphics operations - If
pipelineBindPoint
isPIPELINE_BIND_POINT_COMPUTE
,pipeline
must be a compute pipeline - If
pipelineBindPoint
isPIPELINE_BIND_POINT_GRAPHICS
,pipeline
must be a graphics pipeline - If the
variable multisample rate
feature is not supported,
pipeline
is a graphics pipeline, the current subpass uses no attachments, and this is not the first call to this function with a graphics pipeline after transitioning to the current subpass, then the sample count specified by this pipeline must match that set in the previous pipeline - If
PhysicalDeviceSampleLocationsPropertiesEXT
::variableSampleLocations
isFALSE
, andpipeline
is a graphics pipeline created with aPipelineSampleLocationsStateCreateInfoEXT
structure having itssampleLocationsEnable
member set toTRUE
but withoutDYNAMIC_STATE_SAMPLE_LOCATIONS_EXT
enabled then the current render pass instance must have been begun by specifying aRenderPassSampleLocationsBeginInfoEXT
structure whosepPostSubpassSampleLocations
member contains an element with asubpassIndex
matching the current subpass index and thesampleLocationsInfo
member of that element must match thesampleLocationsInfo
specified inPipelineSampleLocationsStateCreateInfoEXT
when the pipeline was created - This command must not be recorded when transform feedback is active
- If
pipelineBindPoint
isPIPELINE_BIND_POINT_RAY_TRACING_KHR
, theCommandPool
thatcommandBuffer
was allocated from must support compute operations - If
pipelineBindPoint
isPIPELINE_BIND_POINT_RAY_TRACING_KHR
, thepipeline
must be a ray tracing pipeline - The
pipeline
must not have been created withPIPELINE_CREATE_LIBRARY_BIT_KHR
set
Valid Usage (Implicit)
commandBuffer
must be a validCommandBuffer
handle
pipelineBindPoint
must be a validPipelineBindPoint
valuepipeline
must be a validPipeline
handlecommandBuffer
must be in the recording state- The
CommandPool
thatcommandBuffer
was allocated from must support graphics, or compute operations - Both of
commandBuffer
, andpipeline
must have been created, allocated, or retrieved from the sameDevice
Host Synchronization
- Host access to
commandBuffer
must be externally synchronized
- Host access to the
CommandPool
thatcommandBuffer
was allocated from must be externally synchronized
Command Properties
'
Command Buffer Levels | Render Pass Scope | Supported Queue Types | Pipeline Type |
---|---|---|---|
Primary Secondary | Both | Graphics Compute |
See Also
cmdSetViewport :: forall io. MonadIO io => CommandBuffer -> ("firstViewport" ::: Word32) -> ("viewports" ::: Vector Viewport) -> io () Source #
vkCmdSetViewport - Set the viewport on a command buffer
Parameters
commandBuffer
is the command buffer into which the command will be recorded.
firstViewport
is the index of the first viewport whose parameters are updated by the command.viewportCount
is the number of viewports whose parameters are updated by the command.pViewports
is a pointer to an array ofViewport
structures specifying viewport parameters.
Description
The viewport parameters taken from element i of pViewports
replace the
current state for the viewport index firstViewport
+ i, for i in [0,
viewportCount
).
Valid Usage
firstViewport
must be less thanPhysicalDeviceLimits
::maxViewports
- The sum of
firstViewport
andviewportCount
must be between1
andPhysicalDeviceLimits
::maxViewports
, inclusive - If the
multiple viewports
feature is not enabled,
firstViewport
must be0
- If the
multiple viewports
feature is not enabled,
viewportCount
must be1
Valid Usage (Implicit)
commandBuffer
must be a validCommandBuffer
handle
pViewports
must be a valid pointer to an array ofviewportCount
validViewport
structurescommandBuffer
must be in the recording state- The
CommandPool
thatcommandBuffer
was allocated from must support graphics operations viewportCount
must be greater than0
Host Synchronization
- Host access to
commandBuffer
must be externally synchronized
- Host access to the
CommandPool
thatcommandBuffer
was allocated from must be externally synchronized
Command Properties
'
Command Buffer Levels | Render Pass Scope | Supported Queue Types | Pipeline Type |
---|---|---|---|
Primary Secondary | Both | Graphics |
See Also
cmdSetScissor :: forall io. MonadIO io => CommandBuffer -> ("firstScissor" ::: Word32) -> ("scissors" ::: Vector Rect2D) -> io () Source #
vkCmdSetScissor - Set the dynamic scissor rectangles on a command buffer
Parameters
commandBuffer
is the command buffer into which the command will be recorded.
firstScissor
is the index of the first scissor whose state is updated by the command.scissorCount
is the number of scissors whose rectangles are updated by the command.pScissors
is a pointer to an array ofRect2D
structures defining scissor rectangles.
Description
The scissor rectangles taken from element i of pScissors
replace the
current state for the scissor index firstScissor
+ i, for i in [0,
scissorCount
).
This command sets the state for a given draw when the graphics pipeline
is created with DYNAMIC_STATE_SCISSOR
set in
PipelineDynamicStateCreateInfo
::pDynamicStates
.
Valid Usage
firstScissor
must be less thanPhysicalDeviceLimits
::maxViewports
- The sum of
firstScissor
andscissorCount
must be between1
andPhysicalDeviceLimits
::maxViewports
, inclusive - If the
multiple viewports
feature is not enabled,
firstScissor
must be0
- If the
multiple viewports
feature is not enabled,
scissorCount
must be1
- The
x
andy
members ofoffset
member of any element ofpScissors
must be greater than or equal to0
- Evaluation of (
offset.x
+extent.width
) must not cause a signed integer addition overflow for any element ofpScissors
- Evaluation of (
offset.y
+extent.height
) must not cause a signed integer addition overflow for any element ofpScissors
Valid Usage (Implicit)
commandBuffer
must be a validCommandBuffer
handle
pScissors
must be a valid pointer to an array ofscissorCount
Rect2D
structurescommandBuffer
must be in the recording state- The
CommandPool
thatcommandBuffer
was allocated from must support graphics operations scissorCount
must be greater than0
Host Synchronization
- Host access to
commandBuffer
must be externally synchronized
- Host access to the
CommandPool
thatcommandBuffer
was allocated from must be externally synchronized
Command Properties
'
Command Buffer Levels | Render Pass Scope | Supported Queue Types | Pipeline Type |
---|---|---|---|
Primary Secondary | Both | Graphics |
See Also
cmdSetLineWidth :: forall io. MonadIO io => CommandBuffer -> ("lineWidth" ::: Float) -> io () Source #
vkCmdSetLineWidth - Set the dynamic line width state
Parameters
commandBuffer
is the command buffer into which the command will be recorded.
lineWidth
is the width of rasterized line segments.
Valid Usage
- If the
wide lines
feature is not enabled,
lineWidth
must be1.0
Valid Usage (Implicit)
commandBuffer
must be a validCommandBuffer
handle
commandBuffer
must be in the recording state- The
CommandPool
thatcommandBuffer
was allocated from must support graphics operations
Host Synchronization
- Host access to
commandBuffer
must be externally synchronized
- Host access to the
CommandPool
thatcommandBuffer
was allocated from must be externally synchronized
Command Properties
'
Command Buffer Levels | Render Pass Scope | Supported Queue Types | Pipeline Type |
---|---|---|---|
Primary Secondary | Both | Graphics |
See Also
cmdSetDepthBias :: forall io. MonadIO io => CommandBuffer -> ("depthBiasConstantFactor" ::: Float) -> ("depthBiasClamp" ::: Float) -> ("depthBiasSlopeFactor" ::: Float) -> io () Source #
vkCmdSetDepthBias - Set the depth bias dynamic state
Parameters
commandBuffer
is the command buffer into which the command will be recorded.
depthBiasConstantFactor
is a scalar factor controlling the constant depth value added to each fragment.depthBiasClamp
is the maximum (or minimum) depth bias of a fragment.depthBiasSlopeFactor
is a scalar factor applied to a fragment’s slope in depth bias calculations.
Description
If depthBiasEnable
is FALSE
, no depth bias is
applied and the fragment’s depth values are unchanged.
depthBiasSlopeFactor
scales the maximum depth slope of the polygon,
and depthBiasConstantFactor
scales an implementation-dependent
constant that relates to the usable resolution of the depth buffer. The
resulting values are summed to produce the depth bias value which is
then clamped to a minimum or maximum value specified by
depthBiasClamp
. depthBiasSlopeFactor
, depthBiasConstantFactor
, and
depthBiasClamp
can each be positive, negative, or zero.
The maximum depth slope m of a triangle is
\[m = \sqrt{ \left({{\partial z_f} \over {\partial x_f}}\right)^2 + \left({{\partial z_f} \over {\partial y_f}}\right)^2}\]
where (xf, yf, zf) is a point on the triangle. m may be approximated as
\[m = \max\left( \left| { {\partial z_f} \over {\partial x_f} } \right|, \left| { {\partial z_f} \over {\partial y_f} } \right| \right).\]
The minimum resolvable difference r is an implementation-dependent
parameter that depends on the depth buffer representation. It is the
smallest difference in framebuffer coordinate z values that is
guaranteed to remain distinct throughout polygon rasterization and in
the depth buffer. All pairs of fragments generated by the rasterization
of two polygons with otherwise identical vertices, but z
f values that
differ by r, will have distinct depth values.
For fixed-point depth buffer representations, r is constant throughout the range of the entire depth buffer. For floating-point depth buffers, there is no single minimum resolvable difference. In this case, the minimum resolvable difference for a given polygon is dependent on the maximum exponent, e, in the range of z values spanned by the primitive. If n is the number of bits in the floating-point mantissa, the minimum resolvable difference, r, for the given primitive is defined as
- r = 2e-n
If a triangle is rasterized using the
POLYGON_MODE_FILL_RECTANGLE_NV
polygon
mode, then this minimum resolvable difference may not be resolvable
for samples outside of the triangle, where the depth is extrapolated.
If no depth buffer is present, r is undefined.
The bias value o for a polygon is
[begin{aligned} o &= mathrm{dbclamp}( m times mathtt{depthBiasSlopeFactor} + r times mathtt{depthBiasConstantFactor} ) -- text{where} &quad mathrm{dbclamp}(x) =
Command Buffer Levels | Render Pass Scope | Supported Queue Types | Pipeline Type | +============================================================================================================================+========================================================================================================================+=======================================================================================================================+=====================================================================================================================================+ | Primary | Both | Graphics | | | Secondary | | | | +----------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------+
See Also
cmdSetBlendConstants :: forall io. MonadIO io => CommandBuffer -> ("blendConstants" ::: (Float, Float, Float, Float)) -> io () Source #
vkCmdSetBlendConstants - Set the values of blend constants
Parameters
commandBuffer
is the command buffer into which the command will be recorded.
blendConstants
is a pointer to an array of four values specifying the R, G, B, and A components of the blend constant color used in blending, depending on the blend factor.
Valid Usage (Implicit)
commandBuffer
must be a validCommandBuffer
handle
commandBuffer
must be in the recording state- The
CommandPool
thatcommandBuffer
was allocated from must support graphics operations
Host Synchronization
- Host access to
commandBuffer
must be externally synchronized
- Host access to the
CommandPool
thatcommandBuffer
was allocated from must be externally synchronized
Command Properties
'
Command Buffer Levels | Render Pass Scope | Supported Queue Types | Pipeline Type |
---|---|---|---|
Primary Secondary | Both | Graphics |
See Also
cmdSetDepthBounds :: forall io. MonadIO io => CommandBuffer -> ("minDepthBounds" ::: Float) -> ("maxDepthBounds" ::: Float) -> io () Source #
vkCmdSetDepthBounds - Set the depth bounds test values for a command buffer
Parameters
commandBuffer
is the command buffer into which the command will be recorded.
minDepthBounds
is the minimum depth bound.maxDepthBounds
is the maximum depth bound.
Description
This command sets the state for a given draw when the graphics pipeline
is created with
DYNAMIC_STATE_DEPTH_BOUNDS
set in
PipelineDynamicStateCreateInfo
::pDynamicStates
.
Valid Usage
- Unless the
VK_EXT_depth_range_unrestricted
extension is enabledminDepthBounds
must be between0.0
and1.0
, inclusive
- Unless the
VK_EXT_depth_range_unrestricted
extension is enabledmaxDepthBounds
must be between0.0
and1.0
, inclusive
Valid Usage (Implicit)
commandBuffer
must be a validCommandBuffer
handle
commandBuffer
must be in the recording state- The
CommandPool
thatcommandBuffer
was allocated from must support graphics operations
Host Synchronization
- Host access to
commandBuffer
must be externally synchronized
- Host access to the
CommandPool
thatcommandBuffer
was allocated from must be externally synchronized
Command Properties
'
Command Buffer Levels | Render Pass Scope | Supported Queue Types | Pipeline Type |
---|---|---|---|
Primary Secondary | Both | Graphics |
See Also
cmdSetStencilCompareMask :: forall io. MonadIO io => CommandBuffer -> ("faceMask" ::: StencilFaceFlags) -> ("compareMask" ::: Word32) -> io () Source #
vkCmdSetStencilCompareMask - Set the stencil compare mask dynamic state
Parameters
commandBuffer
is the command buffer into which the command will be recorded.
faceMask
is a bitmask ofStencilFaceFlagBits
specifying the set of stencil state for which to update the compare mask.compareMask
is the new value to use as the stencil compare mask.
Description
This command sets the state for a given draw when the graphics pipeline
is created with
DYNAMIC_STATE_STENCIL_COMPARE_MASK
set in
PipelineDynamicStateCreateInfo
::pDynamicStates
.
Valid Usage (Implicit)
commandBuffer
must be a validCommandBuffer
handle
faceMask
must be a valid combination ofStencilFaceFlagBits
valuesfaceMask
must not be0
commandBuffer
must be in the recording state- The
CommandPool
thatcommandBuffer
was allocated from must support graphics operations
Host Synchronization
- Host access to
commandBuffer
must be externally synchronized
- Host access to the
CommandPool
thatcommandBuffer
was allocated from must be externally synchronized
Command Properties
'
Command Buffer Levels | Render Pass Scope | Supported Queue Types | Pipeline Type |
---|---|---|---|
Primary Secondary | Both | Graphics |
See Also
cmdSetStencilWriteMask :: forall io. MonadIO io => CommandBuffer -> ("faceMask" ::: StencilFaceFlags) -> ("writeMask" ::: Word32) -> io () Source #
vkCmdSetStencilWriteMask - Set the stencil write mask dynamic state
Parameters
commandBuffer
is the command buffer into which the command will be recorded.
faceMask
is a bitmask ofStencilFaceFlagBits
specifying the set of stencil state for which to update the write mask, as described above forcmdSetStencilCompareMask
.writeMask
is the new value to use as the stencil write mask.
Description
This command sets the state for a given draw when the graphics pipeline
is created with
DYNAMIC_STATE_STENCIL_WRITE_MASK
set
in
PipelineDynamicStateCreateInfo
::pDynamicStates
.
Valid Usage (Implicit)
commandBuffer
must be a validCommandBuffer
handle
faceMask
must be a valid combination ofStencilFaceFlagBits
valuesfaceMask
must not be0
commandBuffer
must be in the recording state- The
CommandPool
thatcommandBuffer
was allocated from must support graphics operations
Host Synchronization
- Host access to
commandBuffer
must be externally synchronized
- Host access to the
CommandPool
thatcommandBuffer
was allocated from must be externally synchronized
Command Properties
'
Command Buffer Levels | Render Pass Scope | Supported Queue Types | Pipeline Type |
---|---|---|---|
Primary Secondary | Both | Graphics |
See Also
cmdSetStencilReference :: forall io. MonadIO io => CommandBuffer -> ("faceMask" ::: StencilFaceFlags) -> ("reference" ::: Word32) -> io () Source #
vkCmdSetStencilReference - Set the stencil reference dynamic state
Parameters
commandBuffer
is the command buffer into which the command will be recorded.
faceMask
is a bitmask ofStencilFaceFlagBits
specifying the set of stencil state for which to update the reference value, as described above forcmdSetStencilCompareMask
.reference
is the new value to use as the stencil reference value.
Description
This command sets the state for a given draw when the graphics pipeline
is created with
DYNAMIC_STATE_STENCIL_REFERENCE
set
in
PipelineDynamicStateCreateInfo
::pDynamicStates
.
Valid Usage (Implicit)
commandBuffer
must be a validCommandBuffer
handle
faceMask
must be a valid combination ofStencilFaceFlagBits
valuesfaceMask
must not be0
commandBuffer
must be in the recording state- The
CommandPool
thatcommandBuffer
was allocated from must support graphics operations
Host Synchronization
- Host access to
commandBuffer
must be externally synchronized
- Host access to the
CommandPool
thatcommandBuffer
was allocated from must be externally synchronized
Command Properties
'
Command Buffer Levels | Render Pass Scope | Supported Queue Types | Pipeline Type |
---|---|---|---|
Primary Secondary | Both | Graphics |
See Also
cmdBindDescriptorSets :: forall io. MonadIO io => CommandBuffer -> PipelineBindPoint -> PipelineLayout -> ("firstSet" ::: Word32) -> ("descriptorSets" ::: Vector DescriptorSet) -> ("dynamicOffsets" ::: Vector Word32) -> io () Source #
vkCmdBindDescriptorSets - Binds descriptor sets to a command buffer
Parameters
commandBuffer
is the command buffer that the descriptor sets will be bound to.
pipelineBindPoint
is aPipelineBindPoint
indicating whether the descriptors will be used by graphics pipelines or compute pipelines. There is a separate set of bind points for each of graphics and compute, so binding one does not disturb the other.layout
is aPipelineLayout
object used to program the bindings.firstSet
is the set number of the first descriptor set to be bound.descriptorSetCount
is the number of elements in thepDescriptorSets
array.pDescriptorSets
is a pointer to an array of handles toDescriptorSet
objects describing the descriptor sets to write to.dynamicOffsetCount
is the number of dynamic offsets in thepDynamicOffsets
array.pDynamicOffsets
is a pointer to an array ofuint32_t
values specifying dynamic offsets.
Description
cmdBindDescriptorSets
causes the sets numbered [firstSet
..
firstSet
+descriptorSetCount
-1] to use the bindings stored in
pDescriptorSets
[0..descriptorSetCount-1] for subsequent rendering
commands (either compute or graphics, according to the
pipelineBindPoint
). Any bindings that were previously applied via
these sets are no longer valid.
Once bound, a descriptor set affects rendering of subsequent graphics or compute commands in the command buffer until a different set is bound to the same set number, or else until the set is disturbed as described in Pipeline Layout Compatibility.
A compatible descriptor set must be bound for all set numbers that any shaders in a pipeline access, at the time that a draw or dispatch command is recorded to execute using that pipeline. However, if none of the shaders in a pipeline statically use any bindings with a particular set number, then no descriptor set need be bound for that set number, even if the pipeline layout includes a non-trivial descriptor set layout for that set number.
If any of the sets being bound include dynamic uniform or storage
buffers, then pDynamicOffsets
includes one element for each array
element in each dynamic descriptor type binding in each set. Values are
taken from pDynamicOffsets
in an order such that all entries for set N
come before set N+1; within a set, entries are ordered by the binding
numbers in the descriptor set layouts; and within a binding array,
elements are in order. dynamicOffsetCount
must equal the total
number of dynamic descriptors in the sets being bound.
The effective offset used for dynamic uniform and storage buffer
bindings is the sum of the relative offset taken from pDynamicOffsets
,
and the base address of the buffer plus base offset in the descriptor
set. The range of the dynamic uniform and storage buffer bindings is the
buffer range as specified in the descriptor set.
Each of the pDescriptorSets
must be compatible with the pipeline
layout specified by layout
. The layout used to program the bindings
must also be compatible with the pipeline used in subsequent graphics
or compute commands, as defined in the
Pipeline Layout Compatibility
section.
The descriptor set contents bound by a call to cmdBindDescriptorSets
may be consumed at the following times:
- For descriptor bindings created with the
DESCRIPTOR_BINDING_UPDATE_AFTER_BIND_BIT
bit set, the contents may be consumed when the command buffer is submitted to a queue, or during shader execution of the resulting draws and dispatches, or any time in between. Otherwise, - during host execution of the command, or during shader execution of the resulting draws and dispatches, or any time in between.
Thus, the contents of a descriptor set binding must not be altered (overwritten by an update command, or freed) between the first point in time that it may be consumed, and when the command completes executing on the queue.
The contents of pDynamicOffsets
are consumed immediately during
execution of cmdBindDescriptorSets
. Once all pending uses have
completed, it is legal to update and reuse a descriptor set.
Valid Usage
- Each element of
pDescriptorSets
must have been allocated with aDescriptorSetLayout
that matches (is the same as, or identically defined as) theDescriptorSetLayout
at set n inlayout
, where n is the sum offirstSet
and the index intopDescriptorSets
dynamicOffsetCount
must be equal to the total number of dynamic descriptors inpDescriptorSets
- The sum of
firstSet
anddescriptorSetCount
must be less than or equal toPipelineLayoutCreateInfo
::setLayoutCount
provided whenlayout
was created pipelineBindPoint
must be supported by thecommandBuffer
’s parentCommandPool
’s queue family- Each element of
pDynamicOffsets
which corresponds to a descriptor binding with typeDESCRIPTOR_TYPE_UNIFORM_BUFFER_DYNAMIC
must be a multiple ofPhysicalDeviceLimits
::minUniformBufferOffsetAlignment
- Each element of
pDynamicOffsets
which corresponds to a descriptor binding with typeDESCRIPTOR_TYPE_STORAGE_BUFFER_DYNAMIC
must be a multiple ofPhysicalDeviceLimits
::minStorageBufferOffsetAlignment
- For each dynamic uniform or storage buffer binding in
pDescriptorSets
, the sum of the effective offset, as defined above, and the range of the binding must be less than or equal to the size of the buffer
Valid Usage (Implicit)
commandBuffer
must be a validCommandBuffer
handle
pipelineBindPoint
must be a validPipelineBindPoint
valuelayout
must be a validPipelineLayout
handlepDescriptorSets
must be a valid pointer to an array ofdescriptorSetCount
validDescriptorSet
handles- If
dynamicOffsetCount
is not0
,pDynamicOffsets
must be a valid pointer to an array ofdynamicOffsetCount
uint32_t
values commandBuffer
must be in the recording state- The
CommandPool
thatcommandBuffer
was allocated from must support graphics, or compute operations descriptorSetCount
must be greater than0
- Each of
commandBuffer
,layout
, and the elements ofpDescriptorSets
must have been created, allocated, or retrieved from the sameDevice
Host Synchronization
- Host access to
commandBuffer
must be externally synchronized
- Host access to the
CommandPool
thatcommandBuffer
was allocated from must be externally synchronized
Command Properties
'
Command Buffer Levels | Render Pass Scope | Supported Queue Types | Pipeline Type |
---|---|---|---|
Primary Secondary | Both | Graphics Compute |
See Also
CommandBuffer
,
DescriptorSet
,
PipelineBindPoint
,
PipelineLayout
cmdBindIndexBuffer :: forall io. MonadIO io => CommandBuffer -> Buffer -> ("offset" ::: DeviceSize) -> IndexType -> io () Source #
vkCmdBindIndexBuffer - Bind an index buffer to a command buffer
Parameters
commandBuffer
is the command buffer into which the command is recorded.
buffer
is the buffer being bound.offset
is the starting offset in bytes withinbuffer
used in index buffer address calculations.indexType
is aIndexType
value specifying whether indices are treated as 16 bits or 32 bits.
Valid Usage
offset
must be less than the size ofbuffer
- The sum of
offset
and the address of the range ofDeviceMemory
object that is backingbuffer
, must be a multiple of the type indicated byindexType
buffer
must have been created with theBUFFER_USAGE_INDEX_BUFFER_BIT
flag- If
buffer
is non-sparse then it must be bound completely and contiguously to a singleDeviceMemory
object indexType
must not beINDEX_TYPE_NONE_KHR
- If
indexType
isINDEX_TYPE_UINT8_EXT
, the indexTypeUint8 feature must be enabled
Valid Usage (Implicit)
commandBuffer
must be a validCommandBuffer
handle
buffer
must be a validBuffer
handleindexType
must be a validIndexType
valuecommandBuffer
must be in the recording state- The
CommandPool
thatcommandBuffer
was allocated from must support graphics operations - Both of
buffer
, andcommandBuffer
must have been created, allocated, or retrieved from the sameDevice
Host Synchronization
- Host access to
commandBuffer
must be externally synchronized
- Host access to the
CommandPool
thatcommandBuffer
was allocated from must be externally synchronized
Command Properties
'
Command Buffer Levels | Render Pass Scope | Supported Queue Types | Pipeline Type |
---|---|---|---|
Primary Secondary | Both | Graphics |
See Also
cmdBindVertexBuffers :: forall io. MonadIO io => CommandBuffer -> ("firstBinding" ::: Word32) -> ("buffers" ::: Vector Buffer) -> ("offsets" ::: Vector DeviceSize) -> io () Source #
vkCmdBindVertexBuffers - Bind vertex buffers to a command buffer
Parameters
commandBuffer
is the command buffer into which the command is recorded.
firstBinding
is the index of the first vertex input binding whose state is updated by the command.bindingCount
is the number of vertex input bindings whose state is updated by the command.pBuffers
is a pointer to an array of buffer handles.pOffsets
is a pointer to an array of buffer offsets.
Description
The values taken from elements i of pBuffers
and pOffsets
replace
the current state for the vertex input binding firstBinding
+ i, for i
in [0, bindingCount
). The vertex input binding is updated to start at
the offset indicated by pOffsets
[i] from the start of the buffer
pBuffers
[i]. All vertex input attributes that use each of these
bindings will use these updated addresses in their address calculations
for subsequent draw commands. If the
nullDescriptor
feature is enabled, elements of pBuffers
can be
NULL_HANDLE
, and can be used by the
vertex shader. If a vertex input attribute is bound to a vertex input
binding that is NULL_HANDLE
, the values
taken from memory are considered to be zero, and missing G, B, or A
components are
filled with (0,0,1).
Valid Usage
firstBinding
must be less thanPhysicalDeviceLimits
::maxVertexInputBindings
- The sum of
firstBinding
andbindingCount
must be less than or equal toPhysicalDeviceLimits
::maxVertexInputBindings
- All elements of
pOffsets
must be less than the size of the corresponding element inpBuffers
- All elements of
pBuffers
must have been created with theBUFFER_USAGE_VERTEX_BUFFER_BIT
flag - Each element of
pBuffers
that is non-sparse must be bound completely and contiguously to a singleDeviceMemory
object - If the
nullDescriptor
feature is not enabled, all elements of
pBuffers
must not beNULL_HANDLE
- If an element of
pBuffers
isNULL_HANDLE
, then the corresponding element ofpOffsets
must be zero
Valid Usage (Implicit)
commandBuffer
must be a validCommandBuffer
handle
pBuffers
must be a valid pointer to an array ofbindingCount
valid orNULL_HANDLE
Buffer
handlespOffsets
must be a valid pointer to an array ofbindingCount
DeviceSize
valuescommandBuffer
must be in the recording state- The
CommandPool
thatcommandBuffer
was allocated from must support graphics operations bindingCount
must be greater than0
- Both of
commandBuffer
, and the elements ofpBuffers
that are valid handles of non-ignored parameters must have been created, allocated, or retrieved from the sameDevice
Host Synchronization
- Host access to
commandBuffer
must be externally synchronized
- Host access to the
CommandPool
thatcommandBuffer
was allocated from must be externally synchronized
Command Properties
'
Command Buffer Levels | Render Pass Scope | Supported Queue Types | Pipeline Type |
---|---|---|---|
Primary Secondary | Both | Graphics |
See Also
cmdDraw :: forall io. MonadIO io => CommandBuffer -> ("vertexCount" ::: Word32) -> ("instanceCount" ::: Word32) -> ("firstVertex" ::: Word32) -> ("firstInstance" ::: Word32) -> io () Source #
vkCmdDraw - Draw primitives
Parameters
commandBuffer
is the command buffer into which the command is recorded.
vertexCount
is the number of vertices to draw.instanceCount
is the number of instances to draw.firstVertex
is the index of the first vertex to draw.firstInstance
is the instance ID of the first instance to draw.
Description
When the command is executed, primitives are assembled using the current
primitive topology and vertexCount
consecutive vertex indices with the
first vertexIndex
value equal to firstVertex
. The primitives are
drawn instanceCount
times with instanceIndex
starting with
firstInstance
and increasing sequentially for each instance. The
assembled primitives execute the bound graphics pipeline.
Valid Usage
- If a
ImageView
is sampled withFILTER_LINEAR
as a result of this command, then the image view’s format features must containFORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT
- If a
ImageView
is accessed using atomic operations as a result of this command, then the image view’s format features must containFORMAT_FEATURE_STORAGE_IMAGE_ATOMIC_BIT
- If a
ImageView
is sampled withFILTER_CUBIC_EXT
as a result of this command, then the image view’s format features must containFORMAT_FEATURE_SAMPLED_IMAGE_FILTER_CUBIC_BIT_EXT
- Any
ImageView
being sampled withFILTER_CUBIC_EXT
as a result of this command must have aImageViewType
and format that supports cubic filtering, as specified byFilterCubicImageViewImageFormatPropertiesEXT
::filterCubic
returned bygetPhysicalDeviceImageFormatProperties2
- Any
ImageView
being sampled withFILTER_CUBIC_EXT
with a reduction mode of eitherSAMPLER_REDUCTION_MODE_MIN
orSAMPLER_REDUCTION_MODE_MAX
as a result of this command must have aImageViewType
and format that supports cubic filtering together with minmax filtering, as specified byFilterCubicImageViewImageFormatPropertiesEXT
::filterCubicMinmax
returned bygetPhysicalDeviceImageFormatProperties2
- Any
Image
created with aImageCreateInfo
::flags
containingIMAGE_CREATE_CORNER_SAMPLED_BIT_NV
sampled as a result of this command must only be sampled using aSamplerAddressMode
ofSAMPLER_ADDRESS_MODE_CLAMP_TO_EDGE
- For each set n that is statically used by the
Pipeline
bound to the pipeline bind point used by this command, a descriptor set must have been bound to n at the same pipeline bind point, with aPipelineLayout
that is compatible for set n, with thePipelineLayout
used to create the currentPipeline
, as described in ??? - For each push constant that is statically used by the
Pipeline
bound to the pipeline bind point used by this command, a push constant value must have been set for the same pipeline bind point, with aPipelineLayout
that is compatible for push constants, with thePipelineLayout
used to create the currentPipeline
, as described in ??? - Descriptors in each bound descriptor set, specified via
cmdBindDescriptorSets
, must be valid if they are statically used by thePipeline
bound to the pipeline bind point used by this command - A valid pipeline must be bound to the pipeline bind point used by this command
- If the
Pipeline
object bound to the pipeline bind point used by this command requires any dynamic state, that state must have been set forcommandBuffer
, and done so after any previously bound pipeline with the corresponding state not specified as dynamic - There must not have been any calls to dynamic state setting
commands for any state not specified as dynamic in the
Pipeline
object bound to the pipeline bind point used by this command, since that pipeline was bound - If the
Pipeline
object bound to the pipeline bind point used by this command accesses aSampler
object that uses unnormalized coordinates, that sampler must not be used to sample from anyImage
with aImageView
of the typeIMAGE_VIEW_TYPE_3D
,IMAGE_VIEW_TYPE_CUBE
,IMAGE_VIEW_TYPE_1D_ARRAY
,IMAGE_VIEW_TYPE_2D_ARRAY
orIMAGE_VIEW_TYPE_CUBE_ARRAY
, in any shader stage - If the
Pipeline
object bound to the pipeline bind point used by this command accesses aSampler
object that uses unnormalized coordinates, that sampler must not be used with any of the SPIR-VOpImageSample*
orOpImageSparseSample*
instructions withImplicitLod
,Dref
orProj
in their name, in any shader stage - If the
Pipeline
object bound to the pipeline bind point used by this command accesses aSampler
object that uses unnormalized coordinates, that sampler must not be used with any of the SPIR-VOpImageSample*
orOpImageSparseSample*
instructions that includes a LOD bias or any offset values, in any shader stage - If the
robust buffer access
feature is not enabled, and if the
Pipeline
object bound to the pipeline bind point used by this command accesses a uniform buffer, it must not access values outside of the range of the buffer as specified in the descriptor set bound to the same pipeline bind point - If the
robust buffer access
feature is not enabled, and if the
Pipeline
object bound to the pipeline bind point used by this command accesses a storage buffer, it must not access values outside of the range of the buffer as specified in the descriptor set bound to the same pipeline bind point - If
commandBuffer
is an unprotected command buffer, any resource accessed by thePipeline
object bound to the pipeline bind point used by this command must not be a protected resource - The current render pass must be
compatible
with the
renderPass
member of theGraphicsPipelineCreateInfo
structure specified when creating thePipeline
bound toPIPELINE_BIND_POINT_GRAPHICS
- The subpass index of the current render pass must be equal to the
subpass
member of theGraphicsPipelineCreateInfo
structure specified when creating thePipeline
bound toPIPELINE_BIND_POINT_GRAPHICS
- Every input attachment used by the current subpass must be bound to the pipeline via a descriptor set
- Image subresources used as attachments in the current render pass must not be accessed in any way other than as an attachment by this command
- If the draw is recorded in a render pass instance with multiview
enabled, the maximum instance index must be less than or equal to
PhysicalDeviceMultiviewProperties
::maxMultiviewInstanceIndex
- If the bound graphics pipeline was created with
PipelineSampleLocationsStateCreateInfoEXT
::sampleLocationsEnable
set toTRUE
and the current subpass has a depth/stencil attachment, then that attachment must have been created with theIMAGE_CREATE_SAMPLE_LOCATIONS_COMPATIBLE_DEPTH_BIT_EXT
bit set - If
commandBuffer
is a protected command buffer, any resource written to by thePipeline
object bound to the pipeline bind point used by this command must not be an unprotected resource - If
commandBuffer
is a protected command buffer, pipeline stages other than the framebuffer-space and compute stages in thePipeline
object bound to the pipeline bind point must not write to any resource - All vertex input bindings accessed via vertex input variables
declared in the vertex shader entry point’s interface must have
either valid or
NULL_HANDLE
buffers bound - If the
nullDescriptor
feature is not enabled, all vertex input bindings accessed via
vertex input variables declared in the vertex shader entry point’s
interface must not be
NULL_HANDLE
- For a given vertex buffer binding, any attribute data fetched must be entirely contained within the corresponding vertex buffer binding, as described in ???
Valid Usage (Implicit)
commandBuffer
must be a validCommandBuffer
handle
commandBuffer
must be in the recording state- The
CommandPool
thatcommandBuffer
was allocated from must support graphics operations - This command must only be called inside of a render pass instance
Host Synchronization
- Host access to
commandBuffer
must be externally synchronized
- Host access to the
CommandPool
thatcommandBuffer
was allocated from must be externally synchronized
Command Properties
'
Command Buffer Levels | Render Pass Scope | Supported Queue Types | Pipeline Type |
---|---|---|---|
Primary Secondary | Inside | Graphics | Graphics |
See Also
cmdDrawIndexed :: forall io. MonadIO io => CommandBuffer -> ("indexCount" ::: Word32) -> ("instanceCount" ::: Word32) -> ("firstIndex" ::: Word32) -> ("vertexOffset" ::: Int32) -> ("firstInstance" ::: Word32) -> io () Source #
vkCmdDrawIndexed - Issue an indexed draw into a command buffer
Parameters
commandBuffer
is the command buffer into which the command is recorded.
indexCount
is the number of vertices to draw.instanceCount
is the number of instances to draw.firstIndex
is the base index within the index buffer.vertexOffset
is the value added to the vertex index before indexing into the vertex buffer.firstInstance
is the instance ID of the first instance to draw.
Description
When the command is executed, primitives are assembled using the current
primitive topology and indexCount
vertices whose indices are retrieved
from the index buffer. The index buffer is treated as an array of
tightly packed unsigned integers of size defined by the
cmdBindIndexBuffer
::indexType
parameter with which the buffer was
bound.
The first vertex index is at an offset of firstIndex
* indexSize
+
offset
within the bound index buffer, where offset
is the offset
specified by cmdBindIndexBuffer
and indexSize
is the byte size of
the type specified by indexType
. Subsequent index values are retrieved
from consecutive locations in the index buffer. Indices are first
compared to the primitive restart value, then zero extended to 32 bits
(if the indexType
is
INDEX_TYPE_UINT8_EXT
or
INDEX_TYPE_UINT16
) and have
vertexOffset
added to them, before being supplied as the vertexIndex
value.
The primitives are drawn instanceCount
times with instanceIndex
starting with firstInstance
and increasing sequentially for each
instance. The assembled primitives execute the bound graphics pipeline.
Valid Usage
- If a
ImageView
is sampled withFILTER_LINEAR
as a result of this command, then the image view’s format features must containFORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT
- If a
ImageView
is accessed using atomic operations as a result of this command, then the image view’s format features must containFORMAT_FEATURE_STORAGE_IMAGE_ATOMIC_BIT
- If a
ImageView
is sampled withFILTER_CUBIC_EXT
as a result of this command, then the image view’s format features must containFORMAT_FEATURE_SAMPLED_IMAGE_FILTER_CUBIC_BIT_EXT
- Any
ImageView
being sampled withFILTER_CUBIC_EXT
as a result of this command must have aImageViewType
and format that supports cubic filtering, as specified byFilterCubicImageViewImageFormatPropertiesEXT
::filterCubic
returned bygetPhysicalDeviceImageFormatProperties2
- Any
ImageView
being sampled withFILTER_CUBIC_EXT
with a reduction mode of eitherSAMPLER_REDUCTION_MODE_MIN
orSAMPLER_REDUCTION_MODE_MAX
as a result of this command must have aImageViewType
and format that supports cubic filtering together with minmax filtering, as specified byFilterCubicImageViewImageFormatPropertiesEXT
::filterCubicMinmax
returned bygetPhysicalDeviceImageFormatProperties2
- Any
Image
created with aImageCreateInfo
::flags
containingIMAGE_CREATE_CORNER_SAMPLED_BIT_NV
sampled as a result of this command must only be sampled using aSamplerAddressMode
ofSAMPLER_ADDRESS_MODE_CLAMP_TO_EDGE
- For each set n that is statically used by the
Pipeline
bound to the pipeline bind point used by this command, a descriptor set must have been bound to n at the same pipeline bind point, with aPipelineLayout
that is compatible for set n, with thePipelineLayout
used to create the currentPipeline
, as described in ??? - For each push constant that is statically used by the
Pipeline
bound to the pipeline bind point used by this command, a push constant value must have been set for the same pipeline bind point, with aPipelineLayout
that is compatible for push constants, with thePipelineLayout
used to create the currentPipeline
, as described in ??? - Descriptors in each bound descriptor set, specified via
cmdBindDescriptorSets
, must be valid if they are statically used by thePipeline
bound to the pipeline bind point used by this command - A valid pipeline must be bound to the pipeline bind point used by this command
- If the
Pipeline
object bound to the pipeline bind point used by this command requires any dynamic state, that state must have been set forcommandBuffer
, and done so after any previously bound pipeline with the corresponding state not specified as dynamic - There must not have been any calls to dynamic state setting
commands for any state not specified as dynamic in the
Pipeline
object bound to the pipeline bind point used by this command, since that pipeline was bound - If the
Pipeline
object bound to the pipeline bind point used by this command accesses aSampler
object that uses unnormalized coordinates, that sampler must not be used to sample from anyImage
with aImageView
of the typeIMAGE_VIEW_TYPE_3D
,IMAGE_VIEW_TYPE_CUBE
,IMAGE_VIEW_TYPE_1D_ARRAY
,IMAGE_VIEW_TYPE_2D_ARRAY
orIMAGE_VIEW_TYPE_CUBE_ARRAY
, in any shader stage - If the
Pipeline
object bound to the pipeline bind point used by this command accesses aSampler
object that uses unnormalized coordinates, that sampler must not be used with any of the SPIR-VOpImageSample*
orOpImageSparseSample*
instructions withImplicitLod
,Dref
orProj
in their name, in any shader stage - If the
Pipeline
object bound to the pipeline bind point used by this command accesses aSampler
object that uses unnormalized coordinates, that sampler must not be used with any of the SPIR-VOpImageSample*
orOpImageSparseSample*
instructions that includes a LOD bias or any offset values, in any shader stage - If the
robust buffer access
feature is not enabled, and if the
Pipeline
object bound to the pipeline bind point used by this command accesses a uniform buffer, it must not access values outside of the range of the buffer as specified in the descriptor set bound to the same pipeline bind point - If the
robust buffer access
feature is not enabled, and if the
Pipeline
object bound to the pipeline bind point used by this command accesses a storage buffer, it must not access values outside of the range of the buffer as specified in the descriptor set bound to the same pipeline bind point - If
commandBuffer
is an unprotected command buffer, any resource accessed by thePipeline
object bound to the pipeline bind point used by this command must not be a protected resource - The current render pass must be
compatible
with the
renderPass
member of theGraphicsPipelineCreateInfo
structure specified when creating thePipeline
bound toPIPELINE_BIND_POINT_GRAPHICS
- The subpass index of the current render pass must be equal to the
subpass
member of theGraphicsPipelineCreateInfo
structure specified when creating thePipeline
bound toPIPELINE_BIND_POINT_GRAPHICS
- Every input attachment used by the current subpass must be bound to the pipeline via a descriptor set
- Image subresources used as attachments in the current render pass must not be accessed in any way other than as an attachment by this command
- If the draw is recorded in a render pass instance with multiview
enabled, the maximum instance index must be less than or equal to
PhysicalDeviceMultiviewProperties
::maxMultiviewInstanceIndex
- If the bound graphics pipeline was created with
PipelineSampleLocationsStateCreateInfoEXT
::sampleLocationsEnable
set toTRUE
and the current subpass has a depth/stencil attachment, then that attachment must have been created with theIMAGE_CREATE_SAMPLE_LOCATIONS_COMPATIBLE_DEPTH_BIT_EXT
bit set - If
commandBuffer
is a protected command buffer, any resource written to by thePipeline
object bound to the pipeline bind point used by this command must not be an unprotected resource - If
commandBuffer
is a protected command buffer, pipeline stages other than the framebuffer-space and compute stages in thePipeline
object bound to the pipeline bind point must not write to any resource - All vertex input bindings accessed via vertex input variables
declared in the vertex shader entry point’s interface must have
either valid or
NULL_HANDLE
buffers bound - If the
nullDescriptor
feature is not enabled, all vertex input bindings accessed via
vertex input variables declared in the vertex shader entry point’s
interface must not be
NULL_HANDLE
- For a given vertex buffer binding, any attribute data fetched must be entirely contained within the corresponding vertex buffer binding, as described in ???
- (
indexSize
* (firstIndex
+indexCount
) +offset
) must be less than or equal to the size of the bound index buffer, withindexSize
being based on the type specified byindexType
, where the index buffer,indexType
, andoffset
are specified viacmdBindIndexBuffer
Valid Usage (Implicit)
commandBuffer
must be a validCommandBuffer
handle
commandBuffer
must be in the recording state- The
CommandPool
thatcommandBuffer
was allocated from must support graphics operations - This command must only be called inside of a render pass instance
Host Synchronization
- Host access to
commandBuffer
must be externally synchronized
- Host access to the
CommandPool
thatcommandBuffer
was allocated from must be externally synchronized
Command Properties
'
Command Buffer Levels | Render Pass Scope | Supported Queue Types | Pipeline Type |
---|---|---|---|
Primary Secondary | Inside | Graphics | Graphics |
See Also
cmdDrawIndirect :: forall io. MonadIO io => CommandBuffer -> Buffer -> ("offset" ::: DeviceSize) -> ("drawCount" ::: Word32) -> ("stride" ::: Word32) -> io () Source #
vkCmdDrawIndirect - Issue an indirect draw into a command buffer
Parameters
commandBuffer
is the command buffer into which the command is recorded.
buffer
is the buffer containing draw parameters.offset
is the byte offset intobuffer
where parameters begin.drawCount
is the number of draws to execute, and can be zero.stride
is the byte stride between successive sets of draw parameters.
Description
cmdDrawIndirect
behaves similarly to cmdDraw
except that the
parameters are read by the device from a buffer during execution.
drawCount
draws are executed by the command, with parameters taken
from buffer
starting at offset
and increasing by stride
bytes for
each successive draw. The parameters of each draw are encoded in an
array of DrawIndirectCommand
structures. If
drawCount
is less than or equal to one, stride
is ignored.
Valid Usage
- If a
ImageView
is sampled withFILTER_LINEAR
as a result of this command, then the image view’s format features must containFORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT
- If a
ImageView
is accessed using atomic operations as a result of this command, then the image view’s format features must containFORMAT_FEATURE_STORAGE_IMAGE_ATOMIC_BIT
- If a
ImageView
is sampled withFILTER_CUBIC_EXT
as a result of this command, then the image view’s format features must containFORMAT_FEATURE_SAMPLED_IMAGE_FILTER_CUBIC_BIT_EXT
- Any
ImageView
being sampled withFILTER_CUBIC_EXT
as a result of this command must have aImageViewType
and format that supports cubic filtering, as specified byFilterCubicImageViewImageFormatPropertiesEXT
::filterCubic
returned bygetPhysicalDeviceImageFormatProperties2
- Any
ImageView
being sampled withFILTER_CUBIC_EXT
with a reduction mode of eitherSAMPLER_REDUCTION_MODE_MIN
orSAMPLER_REDUCTION_MODE_MAX
as a result of this command must have aImageViewType
and format that supports cubic filtering together with minmax filtering, as specified byFilterCubicImageViewImageFormatPropertiesEXT
::filterCubicMinmax
returned bygetPhysicalDeviceImageFormatProperties2
- Any
Image
created with aImageCreateInfo
::flags
containingIMAGE_CREATE_CORNER_SAMPLED_BIT_NV
sampled as a result of this command must only be sampled using aSamplerAddressMode
ofSAMPLER_ADDRESS_MODE_CLAMP_TO_EDGE
- For each set n that is statically used by the
Pipeline
bound to the pipeline bind point used by this command, a descriptor set must have been bound to n at the same pipeline bind point, with aPipelineLayout
that is compatible for set n, with thePipelineLayout
used to create the currentPipeline
, as described in ??? - For each push constant that is statically used by the
Pipeline
bound to the pipeline bind point used by this command, a push constant value must have been set for the same pipeline bind point, with aPipelineLayout
that is compatible for push constants, with thePipelineLayout
used to create the currentPipeline
, as described in ??? - Descriptors in each bound descriptor set, specified via
cmdBindDescriptorSets
, must be valid if they are statically used by thePipeline
bound to the pipeline bind point used by this command - A valid pipeline must be bound to the pipeline bind point used by this command
- If the
Pipeline
object bound to the pipeline bind point used by this command requires any dynamic state, that state must have been set forcommandBuffer
, and done so after any previously bound pipeline with the corresponding state not specified as dynamic - There must not have been any calls to dynamic state setting
commands for any state not specified as dynamic in the
Pipeline
object bound to the pipeline bind point used by this command, since that pipeline was bound - If the
Pipeline
object bound to the pipeline bind point used by this command accesses aSampler
object that uses unnormalized coordinates, that sampler must not be used to sample from anyImage
with aImageView
of the typeIMAGE_VIEW_TYPE_3D
,IMAGE_VIEW_TYPE_CUBE
,IMAGE_VIEW_TYPE_1D_ARRAY
,IMAGE_VIEW_TYPE_2D_ARRAY
orIMAGE_VIEW_TYPE_CUBE_ARRAY
, in any shader stage - If the
Pipeline
object bound to the pipeline bind point used by this command accesses aSampler
object that uses unnormalized coordinates, that sampler must not be used with any of the SPIR-VOpImageSample*
orOpImageSparseSample*
instructions withImplicitLod
,Dref
orProj
in their name, in any shader stage - If the
Pipeline
object bound to the pipeline bind point used by this command accesses aSampler
object that uses unnormalized coordinates, that sampler must not be used with any of the SPIR-VOpImageSample*
orOpImageSparseSample*
instructions that includes a LOD bias or any offset values, in any shader stage - If the
robust buffer access
feature is not enabled, and if the
Pipeline
object bound to the pipeline bind point used by this command accesses a uniform buffer, it must not access values outside of the range of the buffer as specified in the descriptor set bound to the same pipeline bind point - If the
robust buffer access
feature is not enabled, and if the
Pipeline
object bound to the pipeline bind point used by this command accesses a storage buffer, it must not access values outside of the range of the buffer as specified in the descriptor set bound to the same pipeline bind point - If
commandBuffer
is an unprotected command buffer, any resource accessed by thePipeline
object bound to the pipeline bind point used by this command must not be a protected resource - The current render pass must be
compatible
with the
renderPass
member of theGraphicsPipelineCreateInfo
structure specified when creating thePipeline
bound toPIPELINE_BIND_POINT_GRAPHICS
- The subpass index of the current render pass must be equal to the
subpass
member of theGraphicsPipelineCreateInfo
structure specified when creating thePipeline
bound toPIPELINE_BIND_POINT_GRAPHICS
- Every input attachment used by the current subpass must be bound to the pipeline via a descriptor set
- Image subresources used as attachments in the current render pass must not be accessed in any way other than as an attachment by this command
- If the draw is recorded in a render pass instance with multiview
enabled, the maximum instance index must be less than or equal to
PhysicalDeviceMultiviewProperties
::maxMultiviewInstanceIndex
- If the bound graphics pipeline was created with
PipelineSampleLocationsStateCreateInfoEXT
::sampleLocationsEnable
set toTRUE
and the current subpass has a depth/stencil attachment, then that attachment must have been created with theIMAGE_CREATE_SAMPLE_LOCATIONS_COMPATIBLE_DEPTH_BIT_EXT
bit set - All vertex input bindings accessed via vertex input variables
declared in the vertex shader entry point’s interface must have
either valid or
NULL_HANDLE
buffers bound - If the
nullDescriptor
feature is not enabled, all vertex input bindings accessed via
vertex input variables declared in the vertex shader entry point’s
interface must not be
NULL_HANDLE
- For a given vertex buffer binding, any attribute data fetched must be entirely contained within the corresponding vertex buffer binding, as described in ???
- If
buffer
is non-sparse then it must be bound completely and contiguously to a singleDeviceMemory
object buffer
must have been created with theBUFFER_USAGE_INDIRECT_BUFFER_BIT
bit setoffset
must be a multiple of4
commandBuffer
must not be a protected command buffer- If the
multi-draw indirect
feature is not enabled,
drawCount
must be0
or1
drawCount
must be less than or equal toPhysicalDeviceLimits
::maxDrawIndirectCount
- If the
drawIndirectFirstInstance
feature is not enabled, all the
firstInstance
members of theDrawIndirectCommand
structures accessed by this command must be0
- If
drawCount
is greater than1
,stride
must be a multiple of4
and must be greater than or equal tosizeof
(DrawIndirectCommand
) - If
drawCount
is equal to1
, (offset
+sizeof
(DrawIndirectCommand
)) must be less than or equal to the size ofbuffer
- If
drawCount
is greater than1
, (stride
× (drawCount
- 1) +offset
+sizeof
(DrawIndirectCommand
)) must be less than or equal to the size ofbuffer
Valid Usage (Implicit)
commandBuffer
must be a validCommandBuffer
handle
buffer
must be a validBuffer
handlecommandBuffer
must be in the recording state- The
CommandPool
thatcommandBuffer
was allocated from must support graphics operations - This command must only be called inside of a render pass instance
- Both of
buffer
, andcommandBuffer
must have been created, allocated, or retrieved from the sameDevice
Host Synchronization
- Host access to
commandBuffer
must be externally synchronized
- Host access to the
CommandPool
thatcommandBuffer
was allocated from must be externally synchronized
Command Properties
'
Command Buffer Levels | Render Pass Scope | Supported Queue Types | Pipeline Type |
---|---|---|---|
Primary Secondary | Inside | Graphics | Graphics |
See Also
cmdDrawIndexedIndirect :: forall io. MonadIO io => CommandBuffer -> Buffer -> ("offset" ::: DeviceSize) -> ("drawCount" ::: Word32) -> ("stride" ::: Word32) -> io () Source #
vkCmdDrawIndexedIndirect - Perform an indexed indirect draw
Parameters
commandBuffer
is the command buffer into which the command is recorded.
buffer
is the buffer containing draw parameters.offset
is the byte offset intobuffer
where parameters begin.drawCount
is the number of draws to execute, and can be zero.stride
is the byte stride between successive sets of draw parameters.
Description
cmdDrawIndexedIndirect
behaves similarly to cmdDrawIndexed
except
that the parameters are read by the device from a buffer during
execution. drawCount
draws are executed by the command, with
parameters taken from buffer
starting at offset
and increasing by
stride
bytes for each successive draw. The parameters of each draw are
encoded in an array of
DrawIndexedIndirectCommand
structures. If
drawCount
is less than or equal to one, stride
is ignored.
Valid Usage
- If a
ImageView
is sampled withFILTER_LINEAR
as a result of this command, then the image view’s format features must containFORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT
- If a
ImageView
is accessed using atomic operations as a result of this command, then the image view’s format features must containFORMAT_FEATURE_STORAGE_IMAGE_ATOMIC_BIT
- If a
ImageView
is sampled withFILTER_CUBIC_EXT
as a result of this command, then the image view’s format features must containFORMAT_FEATURE_SAMPLED_IMAGE_FILTER_CUBIC_BIT_EXT
- Any
ImageView
being sampled withFILTER_CUBIC_EXT
as a result of this command must have aImageViewType
and format that supports cubic filtering, as specified byFilterCubicImageViewImageFormatPropertiesEXT
::filterCubic
returned bygetPhysicalDeviceImageFormatProperties2
- Any
ImageView
being sampled withFILTER_CUBIC_EXT
with a reduction mode of eitherSAMPLER_REDUCTION_MODE_MIN
orSAMPLER_REDUCTION_MODE_MAX
as a result of this command must have aImageViewType
and format that supports cubic filtering together with minmax filtering, as specified byFilterCubicImageViewImageFormatPropertiesEXT
::filterCubicMinmax
returned bygetPhysicalDeviceImageFormatProperties2
- Any
Image
created with aImageCreateInfo
::flags
containingIMAGE_CREATE_CORNER_SAMPLED_BIT_NV
sampled as a result of this command must only be sampled using aSamplerAddressMode
ofSAMPLER_ADDRESS_MODE_CLAMP_TO_EDGE
- For each set n that is statically used by the
Pipeline
bound to the pipeline bind point used by this command, a descriptor set must have been bound to n at the same pipeline bind point, with aPipelineLayout
that is compatible for set n, with thePipelineLayout
used to create the currentPipeline
, as described in ??? - For each push constant that is statically used by the
Pipeline
bound to the pipeline bind point used by this command, a push constant value must have been set for the same pipeline bind point, with aPipelineLayout
that is compatible for push constants, with thePipelineLayout
used to create the currentPipeline
, as described in ??? - Descriptors in each bound descriptor set, specified via
cmdBindDescriptorSets
, must be valid if they are statically used by thePipeline
bound to the pipeline bind point used by this command - A valid pipeline must be bound to the pipeline bind point used by this command
- If the
Pipeline
object bound to the pipeline bind point used by this command requires any dynamic state, that state must have been set forcommandBuffer
, and done so after any previously bound pipeline with the corresponding state not specified as dynamic - There must not have been any calls to dynamic state setting
commands for any state not specified as dynamic in the
Pipeline
object bound to the pipeline bind point used by this command, since that pipeline was bound - If the
Pipeline
object bound to the pipeline bind point used by this command accesses aSampler
object that uses unnormalized coordinates, that sampler must not be used to sample from anyImage
with aImageView
of the typeIMAGE_VIEW_TYPE_3D
,IMAGE_VIEW_TYPE_CUBE
,IMAGE_VIEW_TYPE_1D_ARRAY
,IMAGE_VIEW_TYPE_2D_ARRAY
orIMAGE_VIEW_TYPE_CUBE_ARRAY
, in any shader stage - If the
Pipeline
object bound to the pipeline bind point used by this command accesses aSampler
object that uses unnormalized coordinates, that sampler must not be used with any of the SPIR-VOpImageSample*
orOpImageSparseSample*
instructions withImplicitLod
,Dref
orProj
in their name, in any shader stage - If the
Pipeline
object bound to the pipeline bind point used by this command accesses aSampler
object that uses unnormalized coordinates, that sampler must not be used with any of the SPIR-VOpImageSample*
orOpImageSparseSample*
instructions that includes a LOD bias or any offset values, in any shader stage - If the
robust buffer access
feature is not enabled, and if the
Pipeline
object bound to the pipeline bind point used by this command accesses a uniform buffer, it must not access values outside of the range of the buffer as specified in the descriptor set bound to the same pipeline bind point - If the
robust buffer access
feature is not enabled, and if the
Pipeline
object bound to the pipeline bind point used by this command accesses a storage buffer, it must not access values outside of the range of the buffer as specified in the descriptor set bound to the same pipeline bind point - If
commandBuffer
is an unprotected command buffer, any resource accessed by thePipeline
object bound to the pipeline bind point used by this command must not be a protected resource - The current render pass must be
compatible
with the
renderPass
member of theGraphicsPipelineCreateInfo
structure specified when creating thePipeline
bound toPIPELINE_BIND_POINT_GRAPHICS
- The subpass index of the current render pass must be equal to the
subpass
member of theGraphicsPipelineCreateInfo
structure specified when creating thePipeline
bound toPIPELINE_BIND_POINT_GRAPHICS
- Every input attachment used by the current subpass must be bound to the pipeline via a descriptor set
- Image subresources used as attachments in the current render pass must not be accessed in any way other than as an attachment by this command
- If the draw is recorded in a render pass instance with multiview
enabled, the maximum instance index must be less than or equal to
PhysicalDeviceMultiviewProperties
::maxMultiviewInstanceIndex
- If the bound graphics pipeline was created with
PipelineSampleLocationsStateCreateInfoEXT
::sampleLocationsEnable
set toTRUE
and the current subpass has a depth/stencil attachment, then that attachment must have been created with theIMAGE_CREATE_SAMPLE_LOCATIONS_COMPATIBLE_DEPTH_BIT_EXT
bit set - All vertex input bindings accessed via vertex input variables
declared in the vertex shader entry point’s interface must have
either valid or
NULL_HANDLE
buffers bound - If the
nullDescriptor
feature is not enabled, all vertex input bindings accessed via
vertex input variables declared in the vertex shader entry point’s
interface must not be
NULL_HANDLE
- For a given vertex buffer binding, any attribute data fetched must be entirely contained within the corresponding vertex buffer binding, as described in ???
- If
buffer
is non-sparse then it must be bound completely and contiguously to a singleDeviceMemory
object buffer
must have been created with theBUFFER_USAGE_INDIRECT_BUFFER_BIT
bit setoffset
must be a multiple of4
commandBuffer
must not be a protected command buffer- If the
multi-draw indirect
feature is not enabled,
drawCount
must be0
or1
drawCount
must be less than or equal toPhysicalDeviceLimits
::maxDrawIndirectCount
- If
drawCount
is greater than1
,stride
must be a multiple of4
and must be greater than or equal tosizeof
(DrawIndexedIndirectCommand
) - If the
drawIndirectFirstInstance
feature is not enabled, all the
firstInstance
members of theDrawIndexedIndirectCommand
structures accessed by this command must be0
- If
drawCount
is equal to1
, (offset
+sizeof
(DrawIndexedIndirectCommand
)) must be less than or equal to the size ofbuffer
- If
drawCount
is greater than1
, (stride
× (drawCount
- 1) +offset
+sizeof
(DrawIndexedIndirectCommand
)) must be less than or equal to the size ofbuffer
- If drawIndirectCount is not enabled this function must not be used
Valid Usage (Implicit)
commandBuffer
must be a validCommandBuffer
handle
buffer
must be a validBuffer
handlecommandBuffer
must be in the recording state- The
CommandPool
thatcommandBuffer
was allocated from must support graphics operations - This command must only be called inside of a render pass instance
- Both of
buffer
, andcommandBuffer
must have been created, allocated, or retrieved from the sameDevice
Host Synchronization
- Host access to
commandBuffer
must be externally synchronized
- Host access to the
CommandPool
thatcommandBuffer
was allocated from must be externally synchronized
Command Properties
'
Command Buffer Levels | Render Pass Scope | Supported Queue Types | Pipeline Type |
---|---|---|---|
Primary Secondary | Inside | Graphics | Graphics |
See Also
cmdDispatch :: forall io. MonadIO io => CommandBuffer -> ("groupCountX" ::: Word32) -> ("groupCountY" ::: Word32) -> ("groupCountZ" ::: Word32) -> io () Source #
vkCmdDispatch - Dispatch compute work items
Parameters
commandBuffer
is the command buffer into which the command will be recorded.
groupCountX
is the number of local workgroups to dispatch in the X dimension.groupCountY
is the number of local workgroups to dispatch in the Y dimension.groupCountZ
is the number of local workgroups to dispatch in the Z dimension.
Description
When the command is executed, a global workgroup consisting of
groupCountX
× groupCountY
× groupCountZ
local workgroups is
assembled.
Valid Usage
- If a
ImageView
is sampled withFILTER_LINEAR
as a result of this command, then the image view’s format features must containFORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT
- If a
ImageView
is accessed using atomic operations as a result of this command, then the image view’s format features must containFORMAT_FEATURE_STORAGE_IMAGE_ATOMIC_BIT
- If a
ImageView
is sampled withFILTER_CUBIC_EXT
as a result of this command, then the image view’s format features must containFORMAT_FEATURE_SAMPLED_IMAGE_FILTER_CUBIC_BIT_EXT
- Any
ImageView
being sampled withFILTER_CUBIC_EXT
as a result of this command must have aImageViewType
and format that supports cubic filtering, as specified byFilterCubicImageViewImageFormatPropertiesEXT
::filterCubic
returned bygetPhysicalDeviceImageFormatProperties2
- Any
ImageView
being sampled withFILTER_CUBIC_EXT
with a reduction mode of eitherSAMPLER_REDUCTION_MODE_MIN
orSAMPLER_REDUCTION_MODE_MAX
as a result of this command must have aImageViewType
and format that supports cubic filtering together with minmax filtering, as specified byFilterCubicImageViewImageFormatPropertiesEXT
::filterCubicMinmax
returned bygetPhysicalDeviceImageFormatProperties2
- Any
Image
created with aImageCreateInfo
::flags
containingIMAGE_CREATE_CORNER_SAMPLED_BIT_NV
sampled as a result of this command must only be sampled using aSamplerAddressMode
ofSAMPLER_ADDRESS_MODE_CLAMP_TO_EDGE
- For each set n that is statically used by the
Pipeline
bound to the pipeline bind point used by this command, a descriptor set must have been bound to n at the same pipeline bind point, with aPipelineLayout
that is compatible for set n, with thePipelineLayout
used to create the currentPipeline
, as described in ??? - For each push constant that is statically used by the
Pipeline
bound to the pipeline bind point used by this command, a push constant value must have been set for the same pipeline bind point, with aPipelineLayout
that is compatible for push constants, with thePipelineLayout
used to create the currentPipeline
, as described in ??? - Descriptors in each bound descriptor set, specified via
cmdBindDescriptorSets
, must be valid if they are statically used by thePipeline
bound to the pipeline bind point used by this command - A valid pipeline must be bound to the pipeline bind point used by this command
- If the
Pipeline
object bound to the pipeline bind point used by this command requires any dynamic state, that state must have been set forcommandBuffer
, and done so after any previously bound pipeline with the corresponding state not specified as dynamic - There must not have been any calls to dynamic state setting
commands for any state not specified as dynamic in the
Pipeline
object bound to the pipeline bind point used by this command, since that pipeline was bound - If the
Pipeline
object bound to the pipeline bind point used by this command accesses aSampler
object that uses unnormalized coordinates, that sampler must not be used to sample from anyImage
with aImageView
of the typeIMAGE_VIEW_TYPE_3D
,IMAGE_VIEW_TYPE_CUBE
,IMAGE_VIEW_TYPE_1D_ARRAY
,IMAGE_VIEW_TYPE_2D_ARRAY
orIMAGE_VIEW_TYPE_CUBE_ARRAY
, in any shader stage - If the
Pipeline
object bound to the pipeline bind point used by this command accesses aSampler
object that uses unnormalized coordinates, that sampler must not be used with any of the SPIR-VOpImageSample*
orOpImageSparseSample*
instructions withImplicitLod
,Dref
orProj
in their name, in any shader stage - If the
Pipeline
object bound to the pipeline bind point used by this command accesses aSampler
object that uses unnormalized coordinates, that sampler must not be used with any of the SPIR-VOpImageSample*
orOpImageSparseSample*
instructions that includes a LOD bias or any offset values, in any shader stage - If the
robust buffer access
feature is not enabled, and if the
Pipeline
object bound to the pipeline bind point used by this command accesses a uniform buffer, it must not access values outside of the range of the buffer as specified in the descriptor set bound to the same pipeline bind point - If the
robust buffer access
feature is not enabled, and if the
Pipeline
object bound to the pipeline bind point used by this command accesses a storage buffer, it must not access values outside of the range of the buffer as specified in the descriptor set bound to the same pipeline bind point - If
commandBuffer
is an unprotected command buffer, any resource accessed by thePipeline
object bound to the pipeline bind point used by this command must not be a protected resource - If
commandBuffer
is a protected command buffer, any resource written to by thePipeline
object bound to the pipeline bind point used by this command must not be an unprotected resource - If
commandBuffer
is a protected command buffer, pipeline stages other than the framebuffer-space and compute stages in thePipeline
object bound to the pipeline bind point must not write to any resource groupCountX
must be less than or equal toPhysicalDeviceLimits
::maxComputeWorkGroupCount
[0]groupCountY
must be less than or equal toPhysicalDeviceLimits
::maxComputeWorkGroupCount
[1]groupCountZ
must be less than or equal toPhysicalDeviceLimits
::maxComputeWorkGroupCount
[2]
Valid Usage (Implicit)
commandBuffer
must be a validCommandBuffer
handle
commandBuffer
must be in the recording state- The
CommandPool
thatcommandBuffer
was allocated from must support compute operations - This command must only be called outside of a render pass instance
Host Synchronization
- Host access to
commandBuffer
must be externally synchronized
- Host access to the
CommandPool
thatcommandBuffer
was allocated from must be externally synchronized
Command Properties
'
Command Buffer Levels | Render Pass Scope | Supported Queue Types | Pipeline Type |
---|---|---|---|
Primary Secondary | Outside | Compute | Compute |
See Also
cmdDispatchIndirect :: forall io. MonadIO io => CommandBuffer -> Buffer -> ("offset" ::: DeviceSize) -> io () Source #
vkCmdDispatchIndirect - Dispatch compute work items using indirect parameters
Parameters
commandBuffer
is the command buffer into which the command will be recorded.
buffer
is the buffer containing dispatch parameters.offset
is the byte offset intobuffer
where parameters begin.
Description
cmdDispatchIndirect
behaves similarly to cmdDispatch
except that the
parameters are read by the device from a buffer during execution. The
parameters of the dispatch are encoded in a
DispatchIndirectCommand
structure taken from
buffer
starting at offset
.
Valid Usage
- If a
ImageView
is sampled withFILTER_LINEAR
as a result of this command, then the image view’s format features must containFORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT
- If a
ImageView
is accessed using atomic operations as a result of this command, then the image view’s format features must containFORMAT_FEATURE_STORAGE_IMAGE_ATOMIC_BIT
- If a
ImageView
is sampled withFILTER_CUBIC_EXT
as a result of this command, then the image view’s format features must containFORMAT_FEATURE_SAMPLED_IMAGE_FILTER_CUBIC_BIT_EXT
- Any
ImageView
being sampled withFILTER_CUBIC_EXT
as a result of this command must have aImageViewType
and format that supports cubic filtering, as specified byFilterCubicImageViewImageFormatPropertiesEXT
::filterCubic
returned bygetPhysicalDeviceImageFormatProperties2
- Any
ImageView
being sampled withFILTER_CUBIC_EXT
with a reduction mode of eitherSAMPLER_REDUCTION_MODE_MIN
orSAMPLER_REDUCTION_MODE_MAX
as a result of this command must have aImageViewType
and format that supports cubic filtering together with minmax filtering, as specified byFilterCubicImageViewImageFormatPropertiesEXT
::filterCubicMinmax
returned bygetPhysicalDeviceImageFormatProperties2
- Any
Image
created with aImageCreateInfo
::flags
containingIMAGE_CREATE_CORNER_SAMPLED_BIT_NV
sampled as a result of this command must only be sampled using aSamplerAddressMode
ofSAMPLER_ADDRESS_MODE_CLAMP_TO_EDGE
- For each set n that is statically used by the
Pipeline
bound to the pipeline bind point used by this command, a descriptor set must have been bound to n at the same pipeline bind point, with aPipelineLayout
that is compatible for set n, with thePipelineLayout
used to create the currentPipeline
, as described in ??? - For each push constant that is statically used by the
Pipeline
bound to the pipeline bind point used by this command, a push constant value must have been set for the same pipeline bind point, with aPipelineLayout
that is compatible for push constants, with thePipelineLayout
used to create the currentPipeline
, as described in ??? - Descriptors in each bound descriptor set, specified via
cmdBindDescriptorSets
, must be valid if they are statically used by thePipeline
bound to the pipeline bind point used by this command - A valid pipeline must be bound to the pipeline bind point used by this command
- If the
Pipeline
object bound to the pipeline bind point used by this command requires any dynamic state, that state must have been set forcommandBuffer
, and done so after any previously bound pipeline with the corresponding state not specified as dynamic - There must not have been any calls to dynamic state setting
commands for any state not specified as dynamic in the
Pipeline
object bound to the pipeline bind point used by this command, since that pipeline was bound - If the
Pipeline
object bound to the pipeline bind point used by this command accesses aSampler
object that uses unnormalized coordinates, that sampler must not be used to sample from anyImage
with aImageView
of the typeIMAGE_VIEW_TYPE_3D
,IMAGE_VIEW_TYPE_CUBE
,IMAGE_VIEW_TYPE_1D_ARRAY
,IMAGE_VIEW_TYPE_2D_ARRAY
orIMAGE_VIEW_TYPE_CUBE_ARRAY
, in any shader stage - If the
Pipeline
object bound to the pipeline bind point used by this command accesses aSampler
object that uses unnormalized coordinates, that sampler must not be used with any of the SPIR-VOpImageSample*
orOpImageSparseSample*
instructions withImplicitLod
,Dref
orProj
in their name, in any shader stage - If the
Pipeline
object bound to the pipeline bind point used by this command accesses aSampler
object that uses unnormalized coordinates, that sampler must not be used with any of the SPIR-VOpImageSample*
orOpImageSparseSample*
instructions that includes a LOD bias or any offset values, in any shader stage - If the
robust buffer access
feature is not enabled, and if the
Pipeline
object bound to the pipeline bind point used by this command accesses a uniform buffer, it must not access values outside of the range of the buffer as specified in the descriptor set bound to the same pipeline bind point - If the
robust buffer access
feature is not enabled, and if the
Pipeline
object bound to the pipeline bind point used by this command accesses a storage buffer, it must not access values outside of the range of the buffer as specified in the descriptor set bound to the same pipeline bind point - If
commandBuffer
is an unprotected command buffer, any resource accessed by thePipeline
object bound to the pipeline bind point used by this command must not be a protected resource - If
buffer
is non-sparse then it must be bound completely and contiguously to a singleDeviceMemory
object buffer
must have been created with theBUFFER_USAGE_INDIRECT_BUFFER_BIT
bit setoffset
must be a multiple of4
commandBuffer
must not be a protected command buffer- The sum of
offset
and the size ofDispatchIndirectCommand
must be less than or equal to the size ofbuffer
Valid Usage (Implicit)
commandBuffer
must be a validCommandBuffer
handle
buffer
must be a validBuffer
handlecommandBuffer
must be in the recording state- The
CommandPool
thatcommandBuffer
was allocated from must support compute operations - This command must only be called outside of a render pass instance
- Both of
buffer
, andcommandBuffer
must have been created, allocated, or retrieved from the sameDevice
Host Synchronization
- Host access to
commandBuffer
must be externally synchronized
- Host access to the
CommandPool
thatcommandBuffer
was allocated from must be externally synchronized
Command Properties
'
Command Buffer Levels | Render Pass Scope | Supported Queue Types | Pipeline Type |
---|---|---|---|
Primary Secondary | Outside | Compute | Compute |
See Also
cmdCopyBuffer :: forall io. MonadIO io => CommandBuffer -> ("srcBuffer" ::: Buffer) -> ("dstBuffer" ::: Buffer) -> ("regions" ::: Vector BufferCopy) -> io () Source #
vkCmdCopyBuffer - Copy data between buffer regions
Parameters
commandBuffer
is the command buffer into which the command will be recorded.
srcBuffer
is the source buffer.dstBuffer
is the destination buffer.regionCount
is the number of regions to copy.pRegions
is a pointer to an array ofBufferCopy
structures specifying the regions to copy.
Description
Each region in pRegions
is copied from the source buffer to the same
region of the destination buffer. srcBuffer
and dstBuffer
can be
the same buffer or alias the same memory, but the resulting values are
undefined if the copy regions overlap in memory.
Valid Usage
- The
srcOffset
member of each element ofpRegions
must be less than the size ofsrcBuffer
- The
dstOffset
member of each element ofpRegions
must be less than the size ofdstBuffer
- The
size
member of each element ofpRegions
must be less than or equal to the size ofsrcBuffer
minussrcOffset
- The
size
member of each element ofpRegions
must be less than or equal to the size ofdstBuffer
minusdstOffset
- The union of the source regions, and the union of the destination
regions, specified by the elements of
pRegions
, must not overlap in memory srcBuffer
must have been created withBUFFER_USAGE_TRANSFER_SRC_BIT
usage flag- If
srcBuffer
is non-sparse then it must be bound completely and contiguously to a singleDeviceMemory
object dstBuffer
must have been created withBUFFER_USAGE_TRANSFER_DST_BIT
usage flag- If
dstBuffer
is non-sparse then it must be bound completely and contiguously to a singleDeviceMemory
object - If
commandBuffer
is an unprotected command buffer, thensrcBuffer
must not be a protected buffer - If
commandBuffer
is an unprotected command buffer, thendstBuffer
must not be a protected buffer - If
commandBuffer
is a protected command buffer, thendstBuffer
must not be an unprotected buffer
Valid Usage (Implicit)
commandBuffer
must be a validCommandBuffer
handle
srcBuffer
must be a validBuffer
handledstBuffer
must be a validBuffer
handlepRegions
must be a valid pointer to an array ofregionCount
validBufferCopy
structurescommandBuffer
must be in the recording state- The
CommandPool
thatcommandBuffer
was allocated from must support transfer, graphics, or compute operations - This command must only be called outside of a render pass instance
regionCount
must be greater than0
- Each of
commandBuffer
,dstBuffer
, andsrcBuffer
must have been created, allocated, or retrieved from the sameDevice
Host Synchronization
- Host access to
commandBuffer
must be externally synchronized
- Host access to the
CommandPool
thatcommandBuffer
was allocated from must be externally synchronized
Command Properties
'
Command Buffer Levels | Render Pass Scope | Supported Queue Types | Pipeline Type |
---|---|---|---|
Primary Secondary | Outside | Transfer Graphics Compute | Transfer |
See Also
cmdCopyImage :: forall io. MonadIO io => CommandBuffer -> ("srcImage" ::: Image) -> ("srcImageLayout" ::: ImageLayout) -> ("dstImage" ::: Image) -> ("dstImageLayout" ::: ImageLayout) -> ("regions" ::: Vector ImageCopy) -> io () Source #
vkCmdCopyImage - Copy data between images
Parameters
commandBuffer
is the command buffer into which the command will be recorded.
srcImage
is the source image.srcImageLayout
is the current layout of the source image subresource.dstImage
is the destination image.dstImageLayout
is the current layout of the destination image subresource.regionCount
is the number of regions to copy.pRegions
is a pointer to an array ofImageCopy
structures specifying the regions to copy.
Description
Each region in pRegions
is copied from the source image to the same
region of the destination image. srcImage
and dstImage
can be the
same image or alias the same memory.
The formats of srcImage
and dstImage
must be compatible. Formats
are compatible if they share the same class, as shown in the
Compatible Formats
table. Depth/stencil formats must match exactly.
If the format of srcImage
or dstImage
is a
multi-planar image format,
regions of each plane to be copied must be specified separately using
the srcSubresource
and dstSubresource
members of the ImageCopy
structure. In this case, the aspectMask
of the srcSubresource
or
dstSubresource
that refers to the multi-planar image must be
IMAGE_ASPECT_PLANE_0_BIT
,
IMAGE_ASPECT_PLANE_1_BIT
, or
IMAGE_ASPECT_PLANE_2_BIT
. For
the purposes of cmdCopyImage
, each plane of a multi-planar image is
treated as having the format listed in
https://www.khronos.org/registry/vulkan/specs/1.2-extensions/html/vkspec.html#formats-compatible-planes
for the plane identified by the aspectMask
of the corresponding
subresource. This applies both to Format
and to coordinates used in the copy, which correspond to texels in the
plane rather than how these texels map to coordinates in the image as
a whole.
Note
For example, the
IMAGE_ASPECT_PLANE_1_BIT
plane
of a FORMAT_G8_B8R8_2PLANE_420_UNORM
image
is compatible with an image of format
FORMAT_R8G8_UNORM
and (less usefully) with
the IMAGE_ASPECT_PLANE_0_BIT
plane of an image of format
FORMAT_G10X6_B10X6_R10X6_3PLANE_420_UNORM_3PACK16
,
as each texel is 2 bytes in size.
cmdCopyImage
allows copying between size-compatible compressed and
uncompressed internal formats. Formats are size-compatible if the texel
block size of the uncompressed format is equal to the texel block size
of the compressed format. Such a copy does not perform on-the-fly
compression or decompression. When copying from an uncompressed format
to a compressed format, each texel of uncompressed data of the source
image is copied as a raw value to the corresponding compressed texel
block of the destination image. When copying from a compressed format to
an uncompressed format, each compressed texel block of the source image
is copied as a raw value to the corresponding texel of uncompressed data
in the destination image. Thus, for example, it is legal to copy between
a 128-bit uncompressed format and a compressed format which has a
128-bit sized compressed texel block representing 4×4 texels (using 8
bits per texel), or between a 64-bit uncompressed format and a
compressed format which has a 64-bit sized compressed texel block
representing 4×4 texels (using 4 bits per texel).
When copying between compressed and uncompressed formats the extent
members represent the texel dimensions of the source image and not the
destination. When copying from a compressed image to an uncompressed
image the image texel dimensions written to the uncompressed image will
be source extent divided by the compressed texel block dimensions. When
copying from an uncompressed image to a compressed image the image texel
dimensions written to the compressed image will be the source extent
multiplied by the compressed texel block dimensions. In both cases the
number of bytes read and the number of bytes written will be identical.
Copying to or from block-compressed images is typically done in
multiples of the compressed texel block size. For this reason the
extent
must be a multiple of the compressed texel block dimension.
There is one exception to this rule which is required to handle
compressed images created with dimensions that are not a multiple of the
compressed texel block dimensions: if the srcImage
is compressed,
then:
- If
extent.width
is not a multiple of the compressed texel block width, then (extent.width
+srcOffset.x
) must equal the image subresource width. - If
extent.height
is not a multiple of the compressed texel block height, then (extent.height
+srcOffset.y
) must equal the image subresource height. - If
extent.depth
is not a multiple of the compressed texel block depth, then (extent.depth
+srcOffset.z
) must equal the image subresource depth.
Similarly, if the dstImage
is compressed, then:
- If
extent.width
is not a multiple of the compressed texel block width, then (extent.width
+dstOffset.x
) must equal the image subresource width. - If
extent.height
is not a multiple of the compressed texel block height, then (extent.height
+dstOffset.y
) must equal the image subresource height. - If
extent.depth
is not a multiple of the compressed texel block depth, then (extent.depth
+dstOffset.z
) must equal the image subresource depth.
This allows the last compressed texel block of the image in each non-multiple dimension to be included as a source or destination of the copy.
“_422
” image formats that are not
multi-planar
are treated as having a 2×1 compressed texel block for the purposes of
these rules.
cmdCopyImage
can be used to copy image data between multisample
images, but both images must have the same number of samples.
Valid Usage
- The union of all source regions, and the union of all destination
regions, specified by the elements of
pRegions
, must not overlap in memory
- The
format features
of
srcImage
must containFORMAT_FEATURE_TRANSFER_SRC_BIT
srcImage
must have been created withIMAGE_USAGE_TRANSFER_SRC_BIT
usage flag- If
srcImage
is non-sparse then the image or disjoint plane to be copied must be bound completely and contiguously to a singleDeviceMemory
object srcImageLayout
must specify the layout of the image subresources ofsrcImage
specified inpRegions
at the time this command is executed on aDevice
srcImageLayout
must beIMAGE_LAYOUT_TRANSFER_SRC_OPTIMAL
,IMAGE_LAYOUT_GENERAL
, orIMAGE_LAYOUT_SHARED_PRESENT_KHR
- The
format features
of
dstImage
must containFORMAT_FEATURE_TRANSFER_DST_BIT
dstImage
must have been created withIMAGE_USAGE_TRANSFER_DST_BIT
usage flag- If
dstImage
is non-sparse then the image or disjoint plane that is the destination of the copy must be bound completely and contiguously to a singleDeviceMemory
object dstImageLayout
must specify the layout of the image subresources ofdstImage
specified inpRegions
at the time this command is executed on aDevice
dstImageLayout
must beIMAGE_LAYOUT_TRANSFER_DST_OPTIMAL
,IMAGE_LAYOUT_GENERAL
, orIMAGE_LAYOUT_SHARED_PRESENT_KHR
- If the
Format
of each ofsrcImage
anddstImage
is not a multi-planar format, theFormat
of each ofsrcImage
anddstImage
must be compatible, as defined above - In a copy to or from a plane of a
multi-planar image,
the
Format
of the image and plane must be compatible according to the description of compatible planes for the plane being copied - The sample count of
srcImage
anddstImage
must match - If
commandBuffer
is an unprotected command buffer, thensrcImage
must not be a protected image - If
commandBuffer
is an unprotected command buffer, thendstImage
must not be a protected image - If
commandBuffer
is a protected command buffer, thendstImage
must not be an unprotected image - The
srcSubresource.mipLevel
member of each element ofpRegions
must be less than themipLevels
specified inImageCreateInfo
whensrcImage
was created - The
dstSubresource.mipLevel
member of each element ofpRegions
must be less than themipLevels
specified inImageCreateInfo
whendstImage
was created - The
srcSubresource.baseArrayLayer
+srcSubresource.layerCount
of each element ofpRegions
must be less than or equal to thearrayLayers
specified inImageCreateInfo
whensrcImage
was created - The
dstSubresource.baseArrayLayer
+dstSubresource.layerCount
of each element ofpRegions
must be less than or equal to thearrayLayers
specified inImageCreateInfo
whendstImage
was created - The
srcOffset
andextent
members of each element ofpRegions
must respect the image transfer granularity requirements ofcommandBuffer
’s command pool’s queue family, as described inQueueFamilyProperties
- The
dstOffset
andextent
members of each element ofpRegions
must respect the image transfer granularity requirements ofcommandBuffer
’s command pool’s queue family, as described inQueueFamilyProperties
dstImage
andsrcImage
must not have been created withflags
containingIMAGE_CREATE_SUBSAMPLED_BIT_EXT
Valid Usage (Implicit)
commandBuffer
must be a validCommandBuffer
handle
srcImage
must be a validImage
handlesrcImageLayout
must be a validImageLayout
valuedstImage
must be a validImage
handledstImageLayout
must be a validImageLayout
valuepRegions
must be a valid pointer to an array ofregionCount
validImageCopy
structurescommandBuffer
must be in the recording state- The
CommandPool
thatcommandBuffer
was allocated from must support transfer, graphics, or compute operations - This command must only be called outside of a render pass instance
regionCount
must be greater than0
- Each of
commandBuffer
,dstImage
, andsrcImage
must have been created, allocated, or retrieved from the sameDevice
Host Synchronization
- Host access to
commandBuffer
must be externally synchronized
- Host access to the
CommandPool
thatcommandBuffer
was allocated from must be externally synchronized
Command Properties
'
Command Buffer Levels | Render Pass Scope | Supported Queue Types | Pipeline Type |
---|---|---|---|
Primary Secondary | Outside | Transfer Graphics Compute | Transfer |
See Also
cmdBlitImage :: forall io. MonadIO io => CommandBuffer -> ("srcImage" ::: Image) -> ("srcImageLayout" ::: ImageLayout) -> ("dstImage" ::: Image) -> ("dstImageLayout" ::: ImageLayout) -> ("regions" ::: Vector ImageBlit) -> Filter -> io () Source #
vkCmdBlitImage - Copy regions of an image, potentially performing format conversion,
Parameters
commandBuffer
is the command buffer into which the command will be recorded.
srcImage
is the source image.srcImageLayout
is the layout of the source image subresources for the blit.dstImage
is the destination image.dstImageLayout
is the layout of the destination image subresources for the blit.regionCount
is the number of regions to blit.pRegions
is a pointer to an array ofImageBlit
structures specifying the regions to blit.filter
is aFilter
specifying the filter to apply if the blits require scaling.
Description
cmdBlitImage
must not be used for multisampled source or destination
images. Use cmdResolveImage
for this purpose.
As the sizes of the source and destination extents can differ in any dimension, texels in the source extent are scaled and filtered to the destination extent. Scaling occurs via the following operations:
For each destination texel, the integer coordinate of that texel is converted to an unnormalized texture coordinate, using the effective inverse of the equations described in unnormalized to integer conversion:
- ubase = i + ½
- vbase = j + ½
- wbase = k + ½
These base coordinates are then offset by the first destination offset:
- uoffset = ubase - xdst0
- voffset = vbase - ydst0
- woffset = wbase - zdst0
- aoffset = a -
baseArrayCount
dst
The scale is determined from the source and destination regions, and applied to the offset coordinates:
- scale_u = (xsrc1 - xsrc0) / (xdst1 - xdst0)
- scale_v = (ysrc1 - ysrc0) / (ydst1 - ydst0)
- scale_w = (zsrc1 - zsrc0) / (zdst1 - zdst0)
- uscaled = uoffset * scaleu
- vscaled = voffset * scalev
- wscaled = woffset * scalew
Finally the source offset is added to the scaled coordinates, to determine the final unnormalized coordinates used to sample from
srcImage
:- u = uscaled + xsrc0
- v = vscaled + ysrc0
- w = wscaled + zsrc0
- q =
mipLevel
- a = aoffset +
baseArrayCount
src
These coordinates are used to sample from the source image, as described
in
Image Operations chapter,
with the filter mode equal to that of filter
, a mipmap mode of
SAMPLER_MIPMAP_MODE_NEAREST
and
an address mode of
SAMPLER_ADDRESS_MODE_CLAMP_TO_EDGE
.
Implementations must clamp at the edge of the source image, and may
additionally clamp to the edge of the source region.
Note
Due to allowable rounding errors in the generation of the source texture coordinates, it is not always possible to guarantee exactly which source texels will be sampled for a given blit. As rounding errors are implementation dependent, the exact results of a blitting operation are also implementation dependent.
Blits are done layer by layer starting with the baseArrayLayer
member
of srcSubresource
for the source and dstSubresource
for the
destination. layerCount
layers are blitted to the destination image.
3D textures are blitted slice by slice. Slices in the source region
bounded by srcOffsets
[0].z and srcOffsets
[1].z are copied to slices
in the destination region bounded by dstOffsets
[0].z and
dstOffsets
[1].z. For each destination slice, a source z coordinate
is linearly interpolated between srcOffsets
[0].z and
srcOffsets
[1].z. If the filter
parameter is
FILTER_LINEAR
then the value sampled from
the source image is taken by doing linear filtering using the
interpolated z coordinate. If filter
parameter is
FILTER_NEAREST
then the value sampled from
the source image is taken from the single nearest slice, with an
implementation-dependent arithmetic rounding mode.
The following filtering and conversion rules apply:
- Integer formats can only be converted to other integer formats with the same signedness.
- No format conversion is supported between depth/stencil images. The formats must match.
- Format conversions on unorm, snorm, unscaled and packed float formats of the copied aspect of the image are performed by first converting the pixels to float values.
- For sRGB source formats, nonlinear RGB values are converted to linear representation prior to filtering.
- After filtering, the float values are first clamped and then cast to the destination image format. In case of sRGB destination format, linear RGB values are converted to nonlinear representation before writing the pixel to the image.
Signed and unsigned integers are converted by first clamping to the representable range of the destination format, then casting the value.
Valid Usage
- The source region specified by each element of
pRegions
must be a region that is contained withinsrcImage
- The destination region specified by each element of
pRegions
must be a region that is contained withindstImage
- The union of all destination regions, specified by the elements of
pRegions
, must not overlap in memory with any texel that may be sampled during the blit operation - The
format features
of
srcImage
must containFORMAT_FEATURE_BLIT_SRC_BIT
srcImage
must not use a format listed in https://www.khronos.org/registry/vulkan/specs/1.2-extensions/html/vkspec.html#formats-requiring-sampler-ycbcr-conversionsrcImage
must have been created withIMAGE_USAGE_TRANSFER_SRC_BIT
usage flag- If
srcImage
is non-sparse then it must be bound completely and contiguously to a singleDeviceMemory
object srcImageLayout
must specify the layout of the image subresources ofsrcImage
specified inpRegions
at the time this command is executed on aDevice
srcImageLayout
must beIMAGE_LAYOUT_SHARED_PRESENT_KHR
,IMAGE_LAYOUT_TRANSFER_SRC_OPTIMAL
orIMAGE_LAYOUT_GENERAL
- The
format features
of
dstImage
must containFORMAT_FEATURE_BLIT_DST_BIT
dstImage
must not use a format listed in https://www.khronos.org/registry/vulkan/specs/1.2-extensions/html/vkspec.html#formats-requiring-sampler-ycbcr-conversiondstImage
must have been created withIMAGE_USAGE_TRANSFER_DST_BIT
usage flag- If
dstImage
is non-sparse then it must be bound completely and contiguously to a singleDeviceMemory
object dstImageLayout
must specify the layout of the image subresources ofdstImage
specified inpRegions
at the time this command is executed on aDevice
dstImageLayout
must beIMAGE_LAYOUT_SHARED_PRESENT_KHR
,IMAGE_LAYOUT_TRANSFER_DST_OPTIMAL
orIMAGE_LAYOUT_GENERAL
- If either of
srcImage
ordstImage
was created with a signed integerFormat
, the other must also have been created with a signed integerFormat
- If either of
srcImage
ordstImage
was created with an unsigned integerFormat
, the other must also have been created with an unsigned integerFormat
- If either of
srcImage
ordstImage
was created with a depth/stencil format, the other must have exactly the same format - If
srcImage
was created with a depth/stencil format,filter
must beFILTER_NEAREST
srcImage
must have been created with asamples
value ofSAMPLE_COUNT_1_BIT
dstImage
must have been created with asamples
value ofSAMPLE_COUNT_1_BIT
- If
filter
isFILTER_LINEAR
, then the format features ofsrcImage
must containFORMAT_FEATURE_SAMPLED_IMAGE_FILTER_LINEAR_BIT
- If
filter
isFILTER_CUBIC_EXT
, then the format features ofsrcImage
must containFORMAT_FEATURE_SAMPLED_IMAGE_FILTER_CUBIC_BIT_EXT
- If
filter
isFILTER_CUBIC_EXT
,srcImage
must have aImageType
ofIMAGE_TYPE_2D
- If
commandBuffer
is an unprotected command buffer, thensrcImage
must not be a protected image - If
commandBuffer
is an unprotected command buffer, thendstImage
must not be a protected image - If
commandBuffer
is a protected command buffer, thendstImage
must not be an unprotected image - The
srcSubresource.mipLevel
member of each element ofpRegions
must be less than themipLevels
specified inImageCreateInfo
whensrcImage
was created - The
dstSubresource.mipLevel
member of each element ofpRegions
must be less than themipLevels
specified inImageCreateInfo
whendstImage
was created - The
srcSubresource.baseArrayLayer
+srcSubresource.layerCount
of each element ofpRegions
must be less than or equal to thearrayLayers
specified inImageCreateInfo
whensrcImage
was created - The
dstSubresource.baseArrayLayer
+dstSubresource.layerCount
of each element ofpRegions
must be less than or equal to thearrayLayers
specified inImageCreateInfo
whendstImage
was created dstImage
andsrcImage
must not have been created withflags
containingIMAGE_CREATE_SUBSAMPLED_BIT_EXT
Valid Usage (Implicit)
commandBuffer
must be a validCommandBuffer
handle
srcImage
must be a validImage
handlesrcImageLayout
must be a validImageLayout
valuedstImage
must be a validImage
handledstImageLayout
must be a validImageLayout
valuepRegions
must be a valid pointer to an array ofregionCount
validImageBlit
structuresfilter
must be a validFilter
valuecommandBuffer
must be in the recording state- The
CommandPool
thatcommandBuffer
was allocated from must support graphics operations - This command must only be called outside of a render pass instance
regionCount
must be greater than0
- Each of
commandBuffer
,dstImage
, andsrcImage
must have been created, allocated, or retrieved from the sameDevice
Host Synchronization
- Host access to
commandBuffer
must be externally synchronized
- Host access to the
CommandPool
thatcommandBuffer
was allocated from must be externally synchronized
Command Properties
'
Command Buffer Levels | Render Pass Scope | Supported Queue Types | Pipeline Type |
---|---|---|---|
Primary Secondary | Outside | Graphics | Transfer |
See Also
cmdCopyBufferToImage :: forall io. MonadIO io => CommandBuffer -> ("srcBuffer" ::: Buffer) -> ("dstImage" ::: Image) -> ("dstImageLayout" ::: ImageLayout) -> ("regions" ::: Vector BufferImageCopy) -> io () Source #
vkCmdCopyBufferToImage - Copy data from a buffer into an image
Parameters
commandBuffer
is the command buffer into which the command will be recorded.
srcBuffer
is the source buffer.dstImage
is the destination image.dstImageLayout
is the layout of the destination image subresources for the copy.regionCount
is the number of regions to copy.pRegions
is a pointer to an array ofBufferImageCopy
structures specifying the regions to copy.
Description
Each region in pRegions
is copied from the specified region of the
source buffer to the specified region of the destination image.
If the format of dstImage
is a
multi-planar image format),
regions of each plane to be a target of a copy must be specified
separately using the pRegions
member of the BufferImageCopy
structure. In this case, the aspectMask
of imageSubresource
must
be IMAGE_ASPECT_PLANE_0_BIT
,
IMAGE_ASPECT_PLANE_1_BIT
, or
IMAGE_ASPECT_PLANE_2_BIT
. For
the purposes of cmdCopyBufferToImage
, each plane of a multi-planar
image is treated as having the format listed in
https://www.khronos.org/registry/vulkan/specs/1.2-extensions/html/vkspec.html#formats-compatible-planes
for the plane identified by the aspectMask
of the corresponding
subresource. This applies both to Format
and to coordinates used in the copy, which correspond to texels in the
plane rather than how these texels map to coordinates in the image as
a whole.
Valid Usage
srcBuffer
must be large enough to contain all buffer locations that are accessed according to Buffer and Image Addressing, for each element ofpRegions
- The image region specified by each element of
pRegions
must be a region that is contained withindstImage
if thedstImage
’sFormat
is not a multi-planar format, and must be a region that is contained within the plane being copied to if thedstImage
’sFormat
is a multi-planar format - The union of all source regions, and the union of all destination
regions, specified by the elements of
pRegions
, must not overlap in memory srcBuffer
must have been created withBUFFER_USAGE_TRANSFER_SRC_BIT
usage flag- The
format features
of
dstImage
must containFORMAT_FEATURE_TRANSFER_DST_BIT
- If
srcBuffer
is non-sparse then it must be bound completely and contiguously to a singleDeviceMemory
object dstImage
must have been created withIMAGE_USAGE_TRANSFER_DST_BIT
usage flag- If
dstImage
is non-sparse then it must be bound completely and contiguously to a singleDeviceMemory
object dstImage
must have a sample count equal toSAMPLE_COUNT_1_BIT
dstImageLayout
must specify the layout of the image subresources ofdstImage
specified inpRegions
at the time this command is executed on aDevice
dstImageLayout
must beIMAGE_LAYOUT_TRANSFER_DST_OPTIMAL
,IMAGE_LAYOUT_GENERAL
, orIMAGE_LAYOUT_SHARED_PRESENT_KHR
- If
commandBuffer
is an unprotected command buffer, thensrcBuffer
must not be a protected buffer - If
commandBuffer
is an unprotected command buffer, thendstImage
must not be a protected image - If
commandBuffer
is a protected command buffer, thendstImage
must not be an unprotected image - The
imageSubresource.mipLevel
member of each element ofpRegions
must be less than themipLevels
specified inImageCreateInfo
whendstImage
was created - The
imageSubresource.baseArrayLayer
+imageSubresource.layerCount
of each element ofpRegions
must be less than or equal to thearrayLayers
specified inImageCreateInfo
whendstImage
was created - The
imageOffset
andimageExtent
members of each element ofpRegions
must respect the image transfer granularity requirements ofcommandBuffer
’s command pool’s queue family, as described inQueueFamilyProperties
dstImage
must not have been created withflags
containingIMAGE_CREATE_SUBSAMPLED_BIT_EXT
Valid Usage (Implicit)
commandBuffer
must be a validCommandBuffer
handle
srcBuffer
must be a validBuffer
handledstImage
must be a validImage
handledstImageLayout
must be a validImageLayout
valuepRegions
must be a valid pointer to an array ofregionCount
validBufferImageCopy
structurescommandBuffer
must be in the recording state- The
CommandPool
thatcommandBuffer
was allocated from must support transfer, graphics, or compute operations - This command must only be called outside of a render pass instance
regionCount
must be greater than0
- Each of
commandBuffer
,dstImage
, andsrcBuffer
must have been created, allocated, or retrieved from the sameDevice
Host Synchronization
- Host access to
commandBuffer
must be externally synchronized
- Host access to the
CommandPool
thatcommandBuffer
was allocated from must be externally synchronized
Command Properties
'
Command Buffer Levels | Render Pass Scope | Supported Queue Types | Pipeline Type |
---|---|---|---|
Primary Secondary | Outside | Transfer Graphics Compute | Transfer |
See Also
cmdCopyImageToBuffer :: forall io. MonadIO io => CommandBuffer -> ("srcImage" ::: Image) -> ("srcImageLayout" ::: ImageLayout) -> ("dstBuffer" ::: Buffer) -> ("regions" ::: Vector BufferImageCopy) -> io () Source #
vkCmdCopyImageToBuffer - Copy image data into a buffer
Parameters
commandBuffer
is the command buffer into which the command will be recorded.
srcImage
is the source image.srcImageLayout
is the layout of the source image subresources for the copy.dstBuffer
is the destination buffer.regionCount
is the number of regions to copy.pRegions
is a pointer to an array ofBufferImageCopy
structures specifying the regions to copy.
Description
Each region in pRegions
is copied from the specified region of the
source image to the specified region of the destination buffer.
If the Format
of srcImage
is a
multi-planar image format,
regions of each plane to be a source of a copy must be specified
separately using the pRegions
member of the BufferImageCopy
structure. In this case, the aspectMask
of imageSubresource
must
be IMAGE_ASPECT_PLANE_0_BIT
,
IMAGE_ASPECT_PLANE_1_BIT
, or
IMAGE_ASPECT_PLANE_2_BIT
. For
the purposes of cmdCopyBufferToImage
, each plane of a multi-planar
image is treated as having the format listed in
https://www.khronos.org/registry/vulkan/specs/1.2-extensions/html/vkspec.html#formats-compatible-planes
for the plane identified by the aspectMask
of the corresponding
subresource. This applies both to Format
and to coordinates used in the copy, which correspond to texels in the
plane rather than how these texels map to coordinates in the image as
a whole.
Valid Usage
- The image region specified by each element of
pRegions
must be a region that is contained withinsrcImage
if thesrcImage
’sFormat
is not a multi-planar format, and must be a region that is contained within the plane being copied if thesrcImage
’sFormat
is a multi-planar format
dstBuffer
must be large enough to contain all buffer locations that are accessed according to Buffer and Image Addressing, for each element ofpRegions
- The union of all source regions, and the union of all destination
regions, specified by the elements of
pRegions
, must not overlap in memory - The
format features
of
srcImage
must containFORMAT_FEATURE_TRANSFER_SRC_BIT
srcImage
must have been created withIMAGE_USAGE_TRANSFER_SRC_BIT
usage flag- If
srcImage
is non-sparse then it must be bound completely and contiguously to a singleDeviceMemory
object srcImage
must have a sample count equal toSAMPLE_COUNT_1_BIT
srcImageLayout
must specify the layout of the image subresources ofsrcImage
specified inpRegions
at the time this command is executed on aDevice
srcImageLayout
must beIMAGE_LAYOUT_SHARED_PRESENT_KHR
,IMAGE_LAYOUT_TRANSFER_SRC_OPTIMAL
orIMAGE_LAYOUT_GENERAL
dstBuffer
must have been created withBUFFER_USAGE_TRANSFER_DST_BIT
usage flag- If
dstBuffer
is non-sparse then it must be bound completely and contiguously to a singleDeviceMemory
object - If
commandBuffer
is an unprotected command buffer, thensrcImage
must not be a protected image - If
commandBuffer
is an unprotected command buffer, thendstBuffer
must not be a protected buffer - If
commandBuffer
is a protected command buffer, thendstBuffer
must not be an unprotected buffer - The
imageSubresource.mipLevel
member of each element ofpRegions
must be less than themipLevels
specified inImageCreateInfo
whensrcImage
was created - The
imageSubresource.baseArrayLayer
+imageSubresource.layerCount
of each element ofpRegions
must be less than or equal to thearrayLayers
specified inImageCreateInfo
whensrcImage
was created - The
imageOffset
andimageExtent
members of each element ofpRegions
must respect the image transfer granularity requirements ofcommandBuffer
’s command pool’s queue family, as described inQueueFamilyProperties
srcImage
must not have been created withflags
containingIMAGE_CREATE_SUBSAMPLED_BIT_EXT
Valid Usage (Implicit)
commandBuffer
must be a validCommandBuffer
handle
srcImage
must be a validImage
handlesrcImageLayout
must be a validImageLayout
valuedstBuffer
must be a validBuffer
handlepRegions
must be a valid pointer to an array ofregionCount
validBufferImageCopy
structurescommandBuffer
must be in the recording state- The
CommandPool
thatcommandBuffer
was allocated from must support transfer, graphics, or compute operations - This command must only be called outside of a render pass instance
regionCount
must be greater than0
- Each of
commandBuffer
,dstBuffer
, andsrcImage
must have been created, allocated, or retrieved from the sameDevice
Host Synchronization
- Host access to
commandBuffer
must be externally synchronized
- Host access to the
CommandPool
thatcommandBuffer
was allocated from must be externally synchronized
Command Properties
'
Command Buffer Levels | Render Pass Scope | Supported Queue Types | Pipeline Type |
---|---|---|---|
Primary Secondary | Outside | Transfer Graphics Compute | Transfer |
See Also
cmdUpdateBuffer :: forall io. MonadIO io => CommandBuffer -> ("dstBuffer" ::: Buffer) -> ("dstOffset" ::: DeviceSize) -> ("dataSize" ::: DeviceSize) -> ("data" ::: Ptr ()) -> io () Source #
vkCmdUpdateBuffer - Update a buffer’s contents from host memory
Parameters
commandBuffer
is the command buffer into which the command will be recorded.
dstBuffer
is a handle to the buffer to be updated.dstOffset
is the byte offset into the buffer to start updating, and must be a multiple of 4.dataSize
is the number of bytes to update, and must be a multiple of 4.pData
is a pointer to the source data for the buffer update, and must be at leastdataSize
bytes in size.
Description
dataSize
must be less than or equal to 65536 bytes. For larger
updates, applications can use buffer to buffer
copies.
Note
Buffer updates performed with cmdUpdateBuffer
first copy the data into
command buffer memory when the command is recorded (which requires
additional storage and may incur an additional allocation), and then
copy the data from the command buffer into dstBuffer
when the command
is executed on a device.
The additional cost of this functionality compared to buffer to buffer copies means it is only recommended for very small amounts of data, and is why it is limited to only 65536 bytes.
Applications can work around this by issuing multiple
cmdUpdateBuffer
commands to different ranges of the same buffer, but
it is strongly recommended that they should not.
The source data is copied from the user pointer to the command buffer when the command is called.
cmdUpdateBuffer
is only allowed outside of a render pass. This command
is treated as “transfer” operation, for the purposes of synchronization
barriers. The
BUFFER_USAGE_TRANSFER_DST_BIT
must be specified in usage
of
BufferCreateInfo
in order for the buffer to be
compatible with cmdUpdateBuffer
.
Valid Usage
dstOffset
must be less than the size ofdstBuffer
dataSize
must be less than or equal to the size ofdstBuffer
minusdstOffset
dstBuffer
must have been created withBUFFER_USAGE_TRANSFER_DST_BIT
usage flag- If
dstBuffer
is non-sparse then it must be bound completely and contiguously to a singleDeviceMemory
object dstOffset
must be a multiple of4
dataSize
must be less than or equal to65536
dataSize
must be a multiple of4
- If
commandBuffer
is an unprotected command buffer, thendstBuffer
must not be a protected buffer - If
commandBuffer
is a protected command buffer, thendstBuffer
must not be an unprotected buffer
Valid Usage (Implicit)
commandBuffer
must be a validCommandBuffer
handle
dstBuffer
must be a validBuffer
handlepData
must be a valid pointer to an array ofdataSize
bytescommandBuffer
must be in the recording state- The
CommandPool
thatcommandBuffer
was allocated from must support transfer, graphics, or compute operations - This command must only be called outside of a render pass instance
dataSize
must be greater than0
- Both of
commandBuffer
, anddstBuffer
must have been created, allocated, or retrieved from the sameDevice
Host Synchronization
- Host access to
commandBuffer
must be externally synchronized
- Host access to the
CommandPool
thatcommandBuffer
was allocated from must be externally synchronized
Command Properties
'
Command Buffer Levels | Render Pass Scope | Supported Queue Types | Pipeline Type |
---|---|---|---|
Primary Secondary | Outside | Transfer Graphics Compute | Transfer |
See Also
cmdFillBuffer :: forall io. MonadIO io => CommandBuffer -> ("dstBuffer" ::: Buffer) -> ("dstOffset" ::: DeviceSize) -> DeviceSize -> ("data" ::: Word32) -> io () Source #
vkCmdFillBuffer - Fill a region of a buffer with a fixed value
Parameters
commandBuffer
is the command buffer into which the command will be recorded.
dstBuffer
is the buffer to be filled.dstOffset
is the byte offset into the buffer at which to start filling, and must be a multiple of 4.size
is the number of bytes to fill, and must be either a multiple of 4, orWHOLE_SIZE
to fill the range fromoffset
to the end of the buffer. IfWHOLE_SIZE
is used and the remaining size of the buffer is not a multiple of 4, then the nearest smaller multiple is used.data
is the 4-byte word written repeatedly to the buffer to fillsize
bytes of data. The data word is written to memory according to the host endianness.
Description
cmdFillBuffer
is treated as “transfer” operation for the purposes of
synchronization barriers. The
BUFFER_USAGE_TRANSFER_DST_BIT
must be specified in usage
of
BufferCreateInfo
in order for the buffer to be
compatible with cmdFillBuffer
.
Valid Usage
dstOffset
must be less than the size ofdstBuffer
dstOffset
must be a multiple of4
- If
size
is not equal toWHOLE_SIZE
,size
must be greater than0
- If
size
is not equal toWHOLE_SIZE
,size
must be less than or equal to the size ofdstBuffer
minusdstOffset
- If
size
is not equal toWHOLE_SIZE
,size
must be a multiple of4
dstBuffer
must have been created withBUFFER_USAGE_TRANSFER_DST_BIT
usage flag- If
dstBuffer
is non-sparse then it must be bound completely and contiguously to a singleDeviceMemory
object - If
commandBuffer
is an unprotected command buffer, thendstBuffer
must not be a protected buffer - If
commandBuffer
is a protected command buffer, thendstBuffer
must not be an unprotected buffer
Valid Usage (Implicit)
commandBuffer
must be a validCommandBuffer
handle
dstBuffer
must be a validBuffer
handlecommandBuffer
must be in the recording state- The
CommandPool
thatcommandBuffer
was allocated from must support transfer, graphics or compute operations - This command must only be called outside of a render pass instance
- Both of
commandBuffer
, anddstBuffer
must have been created, allocated, or retrieved from the sameDevice
Host Synchronization
- Host access to
commandBuffer
must be externally synchronized
- Host access to the
CommandPool
thatcommandBuffer
was allocated from must be externally synchronized
Command Properties
'
Command Buffer Levels | Render Pass Scope | Supported Queue Types | Pipeline Type |
---|---|---|---|
Primary Secondary | Outside | Transfer Graphics Compute | Transfer |
See Also
cmdClearColorImage :: forall io. MonadIO io => CommandBuffer -> Image -> ImageLayout -> ClearColorValue -> ("ranges" ::: Vector ImageSubresourceRange) -> io () Source #
vkCmdClearColorImage - Clear regions of a color image
Parameters
commandBuffer
is the command buffer into which the command will be recorded.
image
is the image to be cleared.imageLayout
specifies the current layout of the image subresource ranges to be cleared, and must beIMAGE_LAYOUT_SHARED_PRESENT_KHR
,IMAGE_LAYOUT_GENERAL
orIMAGE_LAYOUT_TRANSFER_DST_OPTIMAL
.pColor
is a pointer to aClearColorValue
structure containing the values that the image subresource ranges will be cleared to (see https://www.khronos.org/registry/vulkan/specs/1.2-extensions/html/vkspec.html#clears-values below).rangeCount
is the number of image subresource range structures inpRanges
.pRanges
is a pointer to an array ofImageSubresourceRange
structures describing a range of mipmap levels, array layers, and aspects to be cleared, as described in Image Views.
Description
Each specified range in pRanges
is cleared to the value specified by
pColor
.
Valid Usage
- The
format features
of
image
must containFORMAT_FEATURE_TRANSFER_DST_BIT
image
must have been created withIMAGE_USAGE_TRANSFER_DST_BIT
usage flagimage
must not use a format listed in https://www.khronos.org/registry/vulkan/specs/1.2-extensions/html/vkspec.html#formats-requiring-sampler-ycbcr-conversion- If
image
is non-sparse then it must be bound completely and contiguously to a singleDeviceMemory
object imageLayout
must specify the layout of the image subresource ranges ofimage
specified inpRanges
at the time this command is executed on aDevice
imageLayout
must beIMAGE_LAYOUT_TRANSFER_DST_OPTIMAL
,IMAGE_LAYOUT_GENERAL
, orIMAGE_LAYOUT_SHARED_PRESENT_KHR
- The
ImageSubresourceRange
::aspectMask
members of the elements of thepRanges
array must each only includeIMAGE_ASPECT_COLOR_BIT
- The
ImageSubresourceRange
::baseMipLevel
members of the elements of thepRanges
array must each be less than themipLevels
specified inImageCreateInfo
whenimage
was created - For each
ImageSubresourceRange
element ofpRanges
, if thelevelCount
member is notREMAINING_MIP_LEVELS
, thenbaseMipLevel
+levelCount
must be less than themipLevels
specified inImageCreateInfo
whenimage
was created - The
ImageSubresourceRange
::baseArrayLayer
members of the elements of thepRanges
array must each be less than thearrayLayers
specified inImageCreateInfo
whenimage
was created - For each
ImageSubresourceRange
element ofpRanges
, if thelayerCount
member is notREMAINING_ARRAY_LAYERS
, thenbaseArrayLayer
+layerCount
must be less than thearrayLayers
specified inImageCreateInfo
whenimage
was created image
must not have a compressed or depth/stencil format- If
commandBuffer
is an unprotected command buffer, thenimage
must not be a protected image - If
commandBuffer
is a protected command buffer, thenimage
must not be an unprotected image
Valid Usage (Implicit)
commandBuffer
must be a validCommandBuffer
handle
image
must be a validImage
handleimageLayout
must be a validImageLayout
valuepColor
must be a valid pointer to a validClearColorValue
unionpRanges
must be a valid pointer to an array ofrangeCount
validImageSubresourceRange
structurescommandBuffer
must be in the recording state- The
CommandPool
thatcommandBuffer
was allocated from must support graphics, or compute operations - This command must only be called outside of a render pass instance
rangeCount
must be greater than0
- Both of
commandBuffer
, andimage
must have been created, allocated, or retrieved from the sameDevice
Host Synchronization
- Host access to
commandBuffer
must be externally synchronized
- Host access to the
CommandPool
thatcommandBuffer
was allocated from must be externally synchronized
Command Properties
'
Command Buffer Levels | Render Pass Scope | Supported Queue Types | Pipeline Type |
---|---|---|---|
Primary Secondary | Outside | Graphics Compute | Transfer |
See Also
ClearColorValue
,
CommandBuffer
, Image
,
ImageLayout
,
ImageSubresourceRange
cmdClearDepthStencilImage :: forall io. MonadIO io => CommandBuffer -> Image -> ImageLayout -> ClearDepthStencilValue -> ("ranges" ::: Vector ImageSubresourceRange) -> io () Source #
vkCmdClearDepthStencilImage - Fill regions of a combined depth/stencil image
Parameters
commandBuffer
is the command buffer into which the command will be recorded.
image
is the image to be cleared.imageLayout
specifies the current layout of the image subresource ranges to be cleared, and must beIMAGE_LAYOUT_GENERAL
orIMAGE_LAYOUT_TRANSFER_DST_OPTIMAL
.pDepthStencil
is a pointer to aClearDepthStencilValue
structure containing the values that the depth and stencil image subresource ranges will be cleared to (see https://www.khronos.org/registry/vulkan/specs/1.2-extensions/html/vkspec.html#clears-values below).rangeCount
is the number of image subresource range structures inpRanges
.pRanges
is a pointer to an array ofImageSubresourceRange
structures describing a range of mipmap levels, array layers, and aspects to be cleared, as described in Image Views.
Valid Usage
- The
format features
of
image
must containFORMAT_FEATURE_TRANSFER_DST_BIT
- If the
aspect
member of any element ofpRanges
includesIMAGE_ASPECT_STENCIL_BIT
, andimage
was created with separate stencil usage,IMAGE_USAGE_TRANSFER_DST_BIT
must have been included in theImageStencilUsageCreateInfo
::stencilUsage
used to createimage
- If the
aspect
member of any element ofpRanges
includesIMAGE_ASPECT_STENCIL_BIT
, andimage
was not created with separate stencil usage,IMAGE_USAGE_TRANSFER_DST_BIT
must have been included in theImageCreateInfo
::usage
used to createimage
- If the
aspect
member of any element ofpRanges
includesIMAGE_ASPECT_DEPTH_BIT
,IMAGE_USAGE_TRANSFER_DST_BIT
must have been included in theImageCreateInfo
::usage
used to createimage
- If
image
is non-sparse then it must be bound completely and contiguously to a singleDeviceMemory
object imageLayout
must specify the layout of the image subresource ranges ofimage
specified inpRanges
at the time this command is executed on aDevice
imageLayout
must be either ofIMAGE_LAYOUT_TRANSFER_DST_OPTIMAL
orIMAGE_LAYOUT_GENERAL
- The
ImageSubresourceRange
::aspectMask
member of each element of thepRanges
array must not include bits other thanIMAGE_ASPECT_DEPTH_BIT
orIMAGE_ASPECT_STENCIL_BIT
- If the
image
’s format does not have a stencil component, then theImageSubresourceRange
::aspectMask
member of each element of thepRanges
array must not include theIMAGE_ASPECT_STENCIL_BIT
bit - If the
image
’s format does not have a depth component, then theImageSubresourceRange
::aspectMask
member of each element of thepRanges
array must not include theIMAGE_ASPECT_DEPTH_BIT
bit - The
ImageSubresourceRange
::baseMipLevel
members of the elements of thepRanges
array must each be less than themipLevels
specified inImageCreateInfo
whenimage
was created - For each
ImageSubresourceRange
element ofpRanges
, if thelevelCount
member is notREMAINING_MIP_LEVELS
, thenbaseMipLevel
+levelCount
must be less than themipLevels
specified inImageCreateInfo
whenimage
was created - The
ImageSubresourceRange
::baseArrayLayer
members of the elements of thepRanges
array must each be less than thearrayLayers
specified inImageCreateInfo
whenimage
was created - For each
ImageSubresourceRange
element ofpRanges
, if thelayerCount
member is notREMAINING_ARRAY_LAYERS
, thenbaseArrayLayer
+layerCount
must be less than thearrayLayers
specified inImageCreateInfo
whenimage
was created image
must have a depth/stencil format- If
commandBuffer
is an unprotected command buffer, thenimage
must not be a protected image - If
commandBuffer
is a protected command buffer, thenimage
must not be an unprotected image
Valid Usage (Implicit)
commandBuffer
must be a validCommandBuffer
handle
image
must be a validImage
handleimageLayout
must be a validImageLayout
valuepDepthStencil
must be a valid pointer to a validClearDepthStencilValue
structurepRanges
must be a valid pointer to an array ofrangeCount
validImageSubresourceRange
structurescommandBuffer
must be in the recording state- The
CommandPool
thatcommandBuffer
was allocated from must support graphics operations - This command must only be called outside of a render pass instance
rangeCount
must be greater than0
- Both of
commandBuffer
, andimage
must have been created, allocated, or retrieved from the sameDevice
Host Synchronization
- Host access to
commandBuffer
must be externally synchronized
- Host access to the
CommandPool
thatcommandBuffer
was allocated from must be externally synchronized
Command Properties
'
Command Buffer Levels | Render Pass Scope | Supported Queue Types | Pipeline Type |
---|---|---|---|
Primary Secondary | Outside | Graphics | Transfer |
See Also
ClearDepthStencilValue
,
CommandBuffer
, Image
,
ImageLayout
,
ImageSubresourceRange
cmdClearAttachments :: forall io. MonadIO io => CommandBuffer -> ("attachments" ::: Vector ClearAttachment) -> ("rects" ::: Vector ClearRect) -> io () Source #
vkCmdClearAttachments - Clear regions within bound framebuffer attachments
Parameters
commandBuffer
is the command buffer into which the command will be recorded.
attachmentCount
is the number of entries in thepAttachments
array.pAttachments
is a pointer to an array ofClearAttachment
structures defining the attachments to clear and the clear values to use. If any attachment to be cleared in the current subpass isATTACHMENT_UNUSED
, then the clear has no effect on that attachment.rectCount
is the number of entries in thepRects
array.pRects
is a pointer to an array ofClearRect
structures defining regions within each selected attachment to clear.
Description
cmdClearAttachments
can clear multiple regions of each attachment
used in the current subpass of a render pass instance. This command
must be called only inside a render pass instance, and implicitly
selects the images to clear based on the current framebuffer attachments
and the command parameters.
If the render pass has a fragment density map attachment, clears follow the operations of fragment density maps as if each clear region was a primitive which generates fragments. The clear color is applied to all pixels inside each fragment’s area regardless if the pixels lie outside of the clear region. Clears may have a different set of supported fragment areas than draws.
Unlike other
clear commands,
cmdClearAttachments
executes as a drawing command, rather than a
transfer command, with writes performed by it executing in
rasterization order.
Clears to color attachments are executed as color attachment writes, by
the
PIPELINE_STAGE_COLOR_ATTACHMENT_OUTPUT_BIT
stage. Clears to depth/stencil attachments are executed as
depth writes
and
writes
by the
PIPELINE_STAGE_EARLY_FRAGMENT_TESTS_BIT
and
PIPELINE_STAGE_LATE_FRAGMENT_TESTS_BIT
stages.
Valid Usage
- If the
aspectMask
member of any element ofpAttachments
containsIMAGE_ASPECT_COLOR_BIT
, then thecolorAttachment
member of that element must either refer to a color attachment which isATTACHMENT_UNUSED
, or must be a valid color attachment
- If the
aspectMask
member of any element ofpAttachments
containsIMAGE_ASPECT_DEPTH_BIT
, then the current subpass' depth/stencil attachment must either beATTACHMENT_UNUSED
, or must have a depth component - If the
aspectMask
member of any element ofpAttachments
containsIMAGE_ASPECT_STENCIL_BIT
, then the current subpass' depth/stencil attachment must either beATTACHMENT_UNUSED
, or must have a stencil component - The
rect
member of each element ofpRects
must have anextent.width
greater than0
- The
rect
member of each element ofpRects
must have anextent.height
greater than0
- The rectangular region specified by each element of
pRects
must be contained within the render area of the current render pass instance - The layers specified by each element of
pRects
must be contained within every attachment thatpAttachments
refers to - The
layerCount
member of each element ofpRects
must not be0
- If
commandBuffer
is an unprotected command buffer, then each attachment to be cleared must not be a protected image - If
commandBuffer
is a protected command buffer, then each attachment to be cleared must not be an unprotected image - If the render pass instance this is recorded in uses multiview, then
baseArrayLayer
must be zero andlayerCount
must be one
Valid Usage (Implicit)
commandBuffer
must be a validCommandBuffer
handle
pAttachments
must be a valid pointer to an array ofattachmentCount
validClearAttachment
structurespRects
must be a valid pointer to an array ofrectCount
ClearRect
structurescommandBuffer
must be in the recording state- The
CommandPool
thatcommandBuffer
was allocated from must support graphics operations - This command must only be called inside of a render pass instance
attachmentCount
must be greater than0
rectCount
must be greater than0
Host Synchronization
- Host access to
commandBuffer
must be externally synchronized
- Host access to the
CommandPool
thatcommandBuffer
was allocated from must be externally synchronized
Command Properties
'
Command Buffer Levels | Render Pass Scope | Supported Queue Types | Pipeline Type |
---|---|---|---|
Primary Secondary | Inside | Graphics | Graphics |
See Also
cmdResolveImage :: forall io. MonadIO io => CommandBuffer -> ("srcImage" ::: Image) -> ("srcImageLayout" ::: ImageLayout) -> ("dstImage" ::: Image) -> ("dstImageLayout" ::: ImageLayout) -> ("regions" ::: Vector ImageResolve) -> io () Source #
vkCmdResolveImage - Resolve regions of an image
Parameters
commandBuffer
is the command buffer into which the command will be recorded.
srcImage
is the source image.srcImageLayout
is the layout of the source image subresources for the resolve.dstImage
is the destination image.dstImageLayout
is the layout of the destination image subresources for the resolve.regionCount
is the number of regions to resolve.pRegions
is a pointer to an array ofImageResolve
structures specifying the regions to resolve.
Description
During the resolve the samples corresponding to each pixel location in the source are converted to a single sample before being written to the destination. If the source formats are floating-point or normalized types, the sample values for each pixel are resolved in an implementation-dependent manner. If the source formats are integer types, a single sample’s value is selected for each pixel.
srcOffset
and dstOffset
select the initial x
, y
, and z
offsets
in texels of the sub-regions of the source and destination image data.
extent
is the size in texels of the source image to resolve in
width
, height
and depth
.
Resolves are done layer by layer starting with baseArrayLayer
member
of srcSubresource
for the source and dstSubresource
for the
destination. layerCount
layers are resolved to the destination image.
Valid Usage
- The source region specified by each element of
pRegions
must be a region that is contained withinsrcImage
- The destination region specified by each element of
pRegions
must be a region that is contained withindstImage
- The union of all source regions, and the union of all destination
regions, specified by the elements of
pRegions
, must not overlap in memory - If
srcImage
is non-sparse then it must be bound completely and contiguously to a singleDeviceMemory
object srcImage
must have a sample count equal to any valid sample count value other thanSAMPLE_COUNT_1_BIT
- If
dstImage
is non-sparse then it must be bound completely and contiguously to a singleDeviceMemory
object dstImage
must have a sample count equal toSAMPLE_COUNT_1_BIT
srcImageLayout
must specify the layout of the image subresources ofsrcImage
specified inpRegions
at the time this command is executed on aDevice
srcImageLayout
must beIMAGE_LAYOUT_SHARED_PRESENT_KHR
,IMAGE_LAYOUT_TRANSFER_SRC_OPTIMAL
orIMAGE_LAYOUT_GENERAL
dstImageLayout
must specify the layout of the image subresources ofdstImage
specified inpRegions
at the time this command is executed on aDevice
dstImageLayout
must beIMAGE_LAYOUT_SHARED_PRESENT_KHR
,IMAGE_LAYOUT_TRANSFER_DST_OPTIMAL
orIMAGE_LAYOUT_GENERAL
- The
format features
of
dstImage
must containFORMAT_FEATURE_COLOR_ATTACHMENT_BIT
srcImage
anddstImage
must have been created with the same image format- If
commandBuffer
is an unprotected command buffer, thensrcImage
must not be a protected image - If
commandBuffer
is an unprotected command buffer, thendstImage
must not be a protected image - If
commandBuffer
is a protected command buffer, thendstImage
must not be an unprotected image - The
srcSubresource.mipLevel
member of each element ofpRegions
must be less than themipLevels
specified inImageCreateInfo
whensrcImage
was created - The
dstSubresource.mipLevel
member of each element ofpRegions
must be less than themipLevels
specified inImageCreateInfo
whendstImage
was created - The
srcSubresource.baseArrayLayer
+srcSubresource.layerCount
of each element ofpRegions
must be less than or equal to thearrayLayers
specified inImageCreateInfo
whensrcImage
was created - The
dstSubresource.baseArrayLayer
+dstSubresource.layerCount
of each element ofpRegions
must be less than or equal to thearrayLayers
specified inImageCreateInfo
whendstImage
was created dstImage
andsrcImage
must not have been created withflags
containingIMAGE_CREATE_SUBSAMPLED_BIT_EXT
Valid Usage (Implicit)
commandBuffer
must be a validCommandBuffer
handle
srcImage
must be a validImage
handlesrcImageLayout
must be a validImageLayout
valuedstImage
must be a validImage
handledstImageLayout
must be a validImageLayout
valuepRegions
must be a valid pointer to an array ofregionCount
validImageResolve
structurescommandBuffer
must be in the recording state- The
CommandPool
thatcommandBuffer
was allocated from must support graphics operations - This command must only be called outside of a render pass instance
regionCount
must be greater than0
- Each of
commandBuffer
,dstImage
, andsrcImage
must have been created, allocated, or retrieved from the sameDevice
Host Synchronization
- Host access to
commandBuffer
must be externally synchronized
- Host access to the
CommandPool
thatcommandBuffer
was allocated from must be externally synchronized
Command Properties
'
Command Buffer Levels | Render Pass Scope | Supported Queue Types | Pipeline Type |
---|---|---|---|
Primary Secondary | Outside | Graphics | Transfer |
See Also
cmdSetEvent :: forall io. MonadIO io => CommandBuffer -> Event -> ("stageMask" ::: PipelineStageFlags) -> io () Source #
vkCmdSetEvent - Set an event object to signaled state
Parameters
commandBuffer
is the command buffer into which the command is recorded.
event
is the event that will be signaled.stageMask
specifies the source stage mask used to determine when theevent
is signaled.
Description
When cmdSetEvent
is submitted to a queue, it defines an execution
dependency on commands that were submitted before it, and defines an
event signal operation which sets the event to the signaled state.
The first
synchronization scope
includes all commands that occur earlier in
submission order.
The synchronization scope is limited to operations on the pipeline
stages determined by the
source stage mask
specified by stageMask
.
The second synchronization scope includes only the event signal operation.
If event
is already in the signaled state when cmdSetEvent
is
executed on the device, then cmdSetEvent
has no effect, no event
signal operation occurs, and no execution dependency is generated.
Valid Usage
stageMask
must not includePIPELINE_STAGE_HOST_BIT
- If the
geometry shaders
feature is not enabled,
stageMask
must not containPIPELINE_STAGE_GEOMETRY_SHADER_BIT
- If the
tessellation shaders
feature is not enabled,
stageMask
must not containPIPELINE_STAGE_TESSELLATION_CONTROL_SHADER_BIT
orPIPELINE_STAGE_TESSELLATION_EVALUATION_SHADER_BIT
commandBuffer
’s current device mask must include exactly one physical device- If the
mesh shaders
feature is not enabled,
stageMask
must not containPIPELINE_STAGE_MESH_SHADER_BIT_NV
- If the
task shaders
feature is not enabled,
stageMask
must not containPIPELINE_STAGE_TASK_SHADER_BIT_NV
Valid Usage (Implicit)
commandBuffer
must be a validCommandBuffer
handle
event
must be a validEvent
handlestageMask
must be a valid combination ofPipelineStageFlagBits
valuesstageMask
must not be0
commandBuffer
must be in the recording state- The
CommandPool
thatcommandBuffer
was allocated from must support graphics, or compute operations - This command must only be called outside of a render pass instance
- Both of
commandBuffer
, andevent
must have been created, allocated, or retrieved from the sameDevice
Host Synchronization
- Host access to
commandBuffer
must be externally synchronized
- Host access to the
CommandPool
thatcommandBuffer
was allocated from must be externally synchronized
Command Properties
'
Command Buffer Levels | Render Pass Scope | Supported Queue Types | Pipeline Type |
---|---|---|---|
Primary Secondary | Outside | Graphics Compute |
See Also
cmdResetEvent :: forall io. MonadIO io => CommandBuffer -> Event -> ("stageMask" ::: PipelineStageFlags) -> io () Source #
vkCmdResetEvent - Reset an event object to non-signaled state
Parameters
commandBuffer
is the command buffer into which the command is recorded.
event
is the event that will be unsignaled.stageMask
is a bitmask ofPipelineStageFlagBits
specifying the source stage mask used to determine when theevent
is unsignaled.
Description
When cmdResetEvent
is submitted to a queue, it defines an execution
dependency on commands that were submitted before it, and defines an
event unsignal operation which resets the event to the unsignaled state.
The first
synchronization scope
includes all commands that occur earlier in
submission order.
The synchronization scope is limited to operations on the pipeline
stages determined by the
source stage mask
specified by stageMask
.
The second synchronization scope includes only the event unsignal operation.
If event
is already in the unsignaled state when cmdResetEvent
is
executed on the device, then cmdResetEvent
has no effect, no event
unsignal operation occurs, and no execution dependency is generated.
Valid Usage
stageMask
must not includePIPELINE_STAGE_HOST_BIT
- If the
geometry shaders
feature is not enabled,
stageMask
must not containPIPELINE_STAGE_GEOMETRY_SHADER_BIT
- If the
tessellation shaders
feature is not enabled,
stageMask
must not containPIPELINE_STAGE_TESSELLATION_CONTROL_SHADER_BIT
orPIPELINE_STAGE_TESSELLATION_EVALUATION_SHADER_BIT
- When this command executes,
event
must not be waited on by acmdWaitEvents
command that is currently executing commandBuffer
’s current device mask must include exactly one physical device- If the
mesh shaders
feature is not enabled,
stageMask
must not containPIPELINE_STAGE_MESH_SHADER_BIT_NV
- If the
task shaders
feature is not enabled,
stageMask
must not containPIPELINE_STAGE_TASK_SHADER_BIT_NV
Valid Usage (Implicit)
commandBuffer
must be a validCommandBuffer
handle
event
must be a validEvent
handlestageMask
must be a valid combination ofPipelineStageFlagBits
valuesstageMask
must not be0
commandBuffer
must be in the recording state- The
CommandPool
thatcommandBuffer
was allocated from must support graphics, or compute operations - This command must only be called outside of a render pass instance
- Both of
commandBuffer
, andevent
must have been created, allocated, or retrieved from the sameDevice
Host Synchronization
- Host access to
commandBuffer
must be externally synchronized
- Host access to the
CommandPool
thatcommandBuffer
was allocated from must be externally synchronized
Command Properties
'
Command Buffer Levels | Render Pass Scope | Supported Queue Types | Pipeline Type |
---|---|---|---|
Primary Secondary | Outside | Graphics Compute |
See Also
cmdWaitEvents :: forall io. MonadIO io => CommandBuffer -> ("events" ::: Vector Event) -> ("srcStageMask" ::: PipelineStageFlags) -> ("dstStageMask" ::: PipelineStageFlags) -> ("memoryBarriers" ::: Vector MemoryBarrier) -> ("bufferMemoryBarriers" ::: Vector BufferMemoryBarrier) -> ("imageMemoryBarriers" ::: Vector (SomeStruct ImageMemoryBarrier)) -> io () Source #
vkCmdWaitEvents - Wait for one or more events and insert a set of memory
Parameters
commandBuffer
is the command buffer into which the command is recorded.
eventCount
is the length of thepEvents
array.pEvents
is a pointer to an array of event object handles to wait on.srcStageMask
is a bitmask ofPipelineStageFlagBits
specifying the source stage mask.dstStageMask
is a bitmask ofPipelineStageFlagBits
specifying the destination stage mask.memoryBarrierCount
is the length of thepMemoryBarriers
array.pMemoryBarriers
is a pointer to an array ofMemoryBarrier
structures.bufferMemoryBarrierCount
is the length of thepBufferMemoryBarriers
array.pBufferMemoryBarriers
is a pointer to an array ofBufferMemoryBarrier
structures.imageMemoryBarrierCount
is the length of thepImageMemoryBarriers
array.pImageMemoryBarriers
is a pointer to an array ofImageMemoryBarrier
structures.
Description
When cmdWaitEvents
is submitted to a queue, it defines a memory
dependency between prior event signal operations on the same queue or
the host, and subsequent commands. cmdWaitEvents
must not be used to
wait on event signal operations occurring on other queues.
The first synchronization scope only includes event signal operations
that operate on members of pEvents
, and the operations that
happened-before the event signal operations. Event signal operations
performed by cmdSetEvent
that occur earlier in
submission order
are included in the first synchronization scope, if the
logically latest
pipeline stage in their stageMask
parameter is
logically earlier
than or equal to the
logically latest
pipeline stage in srcStageMask
. Event signal operations performed by
setEvent
are only included in the first
synchronization scope if
PIPELINE_STAGE_HOST_BIT
is
included in srcStageMask
.
The second
synchronization scope
includes all commands that occur later in
submission order.
The second synchronization scope is limited to operations on the
pipeline stages determined by the
destination stage mask
specified by dstStageMask
.
The first
access scope
is limited to access in the pipeline stages determined by the
source stage mask
specified by srcStageMask
. Within that, the first access scope only
includes the first access scopes defined by elements of the
pMemoryBarriers
, pBufferMemoryBarriers
and pImageMemoryBarriers
arrays, which each define a set of
memory barriers.
If no memory barriers are specified, then the first access scope
includes no accesses.
The second
access scope
is limited to access in the pipeline stages determined by the
destination stage mask
specified by dstStageMask
. Within that, the second access scope only
includes the second access scopes defined by elements of the
pMemoryBarriers
, pBufferMemoryBarriers
and pImageMemoryBarriers
arrays, which each define a set of
memory barriers.
If no memory barriers are specified, then the second access scope
includes no accesses.
Note
cmdWaitEvents
is used with cmdSetEvent
to define a memory dependency
between two sets of action commands, roughly in the same way as pipeline
barriers, but split into two commands such that work between the two
may execute unhindered.
Unlike cmdPipelineBarrier
, a
queue family ownership transfer
cannot be performed using cmdWaitEvents
.
Note
Applications should be careful to avoid race conditions when using
events. There is no direct ordering guarantee between a cmdResetEvent
command and a cmdWaitEvents
command submitted after it, so some other
execution dependency must be included between these commands (e.g. a
semaphore).
Valid Usage
srcStageMask
must be the bitwise OR of thestageMask
parameter used in previous calls tocmdSetEvent
with any of the members ofpEvents
andPIPELINE_STAGE_HOST_BIT
if any of the members ofpEvents
was set usingsetEvent
- If the
geometry shaders
feature is not enabled,
srcStageMask
must not containPIPELINE_STAGE_GEOMETRY_SHADER_BIT
- If the
geometry shaders
feature is not enabled,
dstStageMask
must not containPIPELINE_STAGE_GEOMETRY_SHADER_BIT
- If the
tessellation shaders
feature is not enabled,
srcStageMask
must not containPIPELINE_STAGE_TESSELLATION_CONTROL_SHADER_BIT
orPIPELINE_STAGE_TESSELLATION_EVALUATION_SHADER_BIT
- If the
tessellation shaders
feature is not enabled,
dstStageMask
must not containPIPELINE_STAGE_TESSELLATION_CONTROL_SHADER_BIT
orPIPELINE_STAGE_TESSELLATION_EVALUATION_SHADER_BIT
- If
pEvents
includes one or more events that will be signaled bysetEvent
aftercommandBuffer
has been submitted to a queue, thencmdWaitEvents
must not be called inside a render pass instance - Any pipeline stage included in
srcStageMask
ordstStageMask
must be supported by the capabilities of the queue family specified by thequeueFamilyIndex
member of theCommandPoolCreateInfo
structure that was used to create theCommandPool
thatcommandBuffer
was allocated from, as specified in the table of supported pipeline stages - Each element of
pMemoryBarriers
,pBufferMemoryBarriers
orpImageMemoryBarriers
must not have any access flag included in itssrcAccessMask
member if that bit is not supported by any of the pipeline stages insrcStageMask
, as specified in the table of supported access types - Each element of
pMemoryBarriers
,pBufferMemoryBarriers
orpImageMemoryBarriers
must not have any access flag included in itsdstAccessMask
member if that bit is not supported by any of the pipeline stages indstStageMask
, as specified in the table of supported access types - The
srcQueueFamilyIndex
anddstQueueFamilyIndex
members of any element ofpBufferMemoryBarriers
orpImageMemoryBarriers
must be equal commandBuffer
’s current device mask must include exactly one physical device- If the
mesh shaders
feature is not enabled,
srcStageMask
must not containPIPELINE_STAGE_MESH_SHADER_BIT_NV
- If the
task shaders
feature is not enabled,
srcStageMask
must not containPIPELINE_STAGE_TASK_SHADER_BIT_NV
- If the
mesh shaders
feature is not enabled,
dstStageMask
must not containPIPELINE_STAGE_MESH_SHADER_BIT_NV
- If the
task shaders
feature is not enabled,
dstStageMask
must not containPIPELINE_STAGE_TASK_SHADER_BIT_NV
- The
srcAccessMask
member of each element ofpMemoryBarriers
must only include access flags that are supported by one or more of the pipeline stages insrcStageMask
, as specified in the table of supported access types - The
dstAccessMask
member of each element ofpMemoryBarriers
must only include access flags that are supported by one or more of the pipeline stages indstStageMask
, as specified in the table of supported access types - The
srcAccessMask
member of each element ofpBufferMemoryBarriers
must only include access flags that are supported by one or more of the pipeline stages insrcStageMask
, as specified in the table of supported access types - The
dstAccessMask
member of each element ofpBufferMemoryBarriers
must only include access flags that are supported by one or more of the pipeline stages indstStageMask
, as specified in the table of supported access types - The
srcAccessMask
member of each element ofpImageMemoryBarriers
must only include access flags that are supported by one or more of the pipeline stages insrcStageMask
, as specified in the table of supported access types - The
dstAccessMask
member of any element ofpImageMemoryBarriers
must only include access flags that are supported by one or more of the pipeline stages indstStageMask
, as specified in the table of supported access types
Valid Usage (Implicit)
commandBuffer
must be a validCommandBuffer
handle
pEvents
must be a valid pointer to an array ofeventCount
validEvent
handlessrcStageMask
must be a valid combination ofPipelineStageFlagBits
valuessrcStageMask
must not be0
dstStageMask
must be a valid combination ofPipelineStageFlagBits
valuesdstStageMask
must not be0
- If
memoryBarrierCount
is not0
,pMemoryBarriers
must be a valid pointer to an array ofmemoryBarrierCount
validMemoryBarrier
structures - If
bufferMemoryBarrierCount
is not0
,pBufferMemoryBarriers
must be a valid pointer to an array ofbufferMemoryBarrierCount
validBufferMemoryBarrier
structures - If
imageMemoryBarrierCount
is not0
,pImageMemoryBarriers
must be a valid pointer to an array ofimageMemoryBarrierCount
validImageMemoryBarrier
structures commandBuffer
must be in the recording state- The
CommandPool
thatcommandBuffer
was allocated from must support graphics, or compute operations eventCount
must be greater than0
- Both of
commandBuffer
, and the elements ofpEvents
must have been created, allocated, or retrieved from the sameDevice
Host Synchronization
- Host access to
commandBuffer
must be externally synchronized
- Host access to the
CommandPool
thatcommandBuffer
was allocated from must be externally synchronized
Command Properties
'
Command Buffer Levels | Render Pass Scope | Supported Queue Types | Pipeline Type |
---|---|---|---|
Primary Secondary | Both | Graphics Compute |
See Also
BufferMemoryBarrier
,
CommandBuffer
, Event
,
ImageMemoryBarrier
,
MemoryBarrier
,
PipelineStageFlags
cmdPipelineBarrier :: forall io. MonadIO io => CommandBuffer -> ("srcStageMask" ::: PipelineStageFlags) -> ("dstStageMask" ::: PipelineStageFlags) -> DependencyFlags -> ("memoryBarriers" ::: Vector MemoryBarrier) -> ("bufferMemoryBarriers" ::: Vector BufferMemoryBarrier) -> ("imageMemoryBarriers" ::: Vector (SomeStruct ImageMemoryBarrier)) -> io () Source #
vkCmdPipelineBarrier - Insert a memory dependency
Parameters
commandBuffer
is the command buffer into which the command is recorded.
srcStageMask
is a bitmask ofPipelineStageFlagBits
specifying the source stage mask.dstStageMask
is a bitmask ofPipelineStageFlagBits
specifying the destination stage mask.dependencyFlags
is a bitmask ofDependencyFlagBits
specifying how execution and memory dependencies are formed.memoryBarrierCount
is the length of thepMemoryBarriers
array.pMemoryBarriers
is a pointer to an array ofMemoryBarrier
structures.bufferMemoryBarrierCount
is the length of thepBufferMemoryBarriers
array.pBufferMemoryBarriers
is a pointer to an array ofBufferMemoryBarrier
structures.imageMemoryBarrierCount
is the length of thepImageMemoryBarriers
array.pImageMemoryBarriers
is a pointer to an array ofImageMemoryBarrier
structures.
Description
When cmdPipelineBarrier
is submitted to a queue, it defines a memory
dependency between commands that were submitted before it, and those
submitted after it.
If cmdPipelineBarrier
was recorded outside a render pass instance, the
first
synchronization scope
includes all commands that occur earlier in
submission order.
If cmdPipelineBarrier
was recorded inside a render pass instance, the
first synchronization scope includes only commands that occur earlier in
submission order
within the same subpass. In either case, the first synchronization scope
is limited to operations on the pipeline stages determined by the
source stage mask
specified by srcStageMask
.
If cmdPipelineBarrier
was recorded outside a render pass instance, the
second
synchronization scope
includes all commands that occur later in
submission order.
If cmdPipelineBarrier
was recorded inside a render pass instance, the
second synchronization scope includes only commands that occur later in
submission order
within the same subpass. In either case, the second synchronization
scope is limited to operations on the pipeline stages determined by the
destination stage mask
specified by dstStageMask
.
The first
access scope
is limited to access in the pipeline stages determined by the
source stage mask
specified by srcStageMask
. Within that, the first access scope only
includes the first access scopes defined by elements of the
pMemoryBarriers
, pBufferMemoryBarriers
and pImageMemoryBarriers
arrays, which each define a set of
memory barriers.
If no memory barriers are specified, then the first access scope
includes no accesses.
The second
access scope
is limited to access in the pipeline stages determined by the
destination stage mask
specified by dstStageMask
. Within that, the second access scope only
includes the second access scopes defined by elements of the
pMemoryBarriers
, pBufferMemoryBarriers
and pImageMemoryBarriers
arrays, which each define a set of
memory barriers.
If no memory barriers are specified, then the second access scope
includes no accesses.
If dependencyFlags
includes
DEPENDENCY_BY_REGION_BIT
, then
any dependency between
framebuffer-space
pipeline stages is
framebuffer-local
- otherwise it is
framebuffer-global.
Valid Usage
- If the
geometry shaders
feature is not enabled,
srcStageMask
must not containPIPELINE_STAGE_GEOMETRY_SHADER_BIT
- If the
geometry shaders
feature is not enabled,
dstStageMask
must not containPIPELINE_STAGE_GEOMETRY_SHADER_BIT
- If the
tessellation shaders
feature is not enabled,
srcStageMask
must not containPIPELINE_STAGE_TESSELLATION_CONTROL_SHADER_BIT
orPIPELINE_STAGE_TESSELLATION_EVALUATION_SHADER_BIT
- If the
tessellation shaders
feature is not enabled,
dstStageMask
must not containPIPELINE_STAGE_TESSELLATION_CONTROL_SHADER_BIT
orPIPELINE_STAGE_TESSELLATION_EVALUATION_SHADER_BIT
- If
cmdPipelineBarrier
is called within a render pass instance, the render pass must have been created with at least oneSubpassDependency
instance inRenderPassCreateInfo
::pDependencies
that expresses a dependency from the current subpass to itself, and for whichsrcStageMask
contains a subset of the bit values inSubpassDependency
::srcStageMask
,dstStageMask
contains a subset of the bit values inSubpassDependency
::dstStageMask
,dependencyFlags
is equal toSubpassDependency
::dependencyFlags
,srcAccessMask
member of each element ofpMemoryBarriers
andpImageMemoryBarriers
contains a subset of the bit values inSubpassDependency
::srcAccessMask
, anddstAccessMask
member of each element ofpMemoryBarriers
andpImageMemoryBarriers
contains a subset of the bit values inSubpassDependency
::dstAccessMask
- If
cmdPipelineBarrier
is called within a render pass instance,bufferMemoryBarrierCount
must be0
- If
cmdPipelineBarrier
is called within a render pass instance, theimage
member of any element ofpImageMemoryBarriers
must be equal to one of the elements ofpAttachments
that the currentframebuffer
was created with, that is also referred to by one of the elements of thepColorAttachments
,pResolveAttachments
orpDepthStencilAttachment
members of theSubpassDescription
instance or by thepDepthStencilResolveAttachment
member of theSubpassDescriptionDepthStencilResolve
structure that the current subpass was created with - If
cmdPipelineBarrier
is called within a render pass instance, theoldLayout
andnewLayout
members of any element ofpImageMemoryBarriers
must be equal to thelayout
member of an element of thepColorAttachments
,pResolveAttachments
orpDepthStencilAttachment
members of theSubpassDescription
instance or by thepDepthStencilResolveAttachment
member of theSubpassDescriptionDepthStencilResolve
structure that the current subpass was created with, that refers to the sameimage
- If
cmdPipelineBarrier
is called within a render pass instance, theoldLayout
andnewLayout
members of an element ofpImageMemoryBarriers
must be equal - If
cmdPipelineBarrier
is called within a render pass instance, thesrcQueueFamilyIndex
anddstQueueFamilyIndex
members of any element ofpImageMemoryBarriers
must beQUEUE_FAMILY_IGNORED
- Any pipeline stage included in
srcStageMask
ordstStageMask
must be supported by the capabilities of the queue family specified by thequeueFamilyIndex
member of theCommandPoolCreateInfo
structure that was used to create theCommandPool
thatcommandBuffer
was allocated from, as specified in the table of supported pipeline stages - If
cmdPipelineBarrier
is called outside of a render pass instance,dependencyFlags
must not includeDEPENDENCY_VIEW_LOCAL_BIT
- If the
mesh shaders
feature is not enabled,
srcStageMask
must not containPIPELINE_STAGE_MESH_SHADER_BIT_NV
- If the
task shaders
feature is not enabled,
srcStageMask
must not containPIPELINE_STAGE_TASK_SHADER_BIT_NV
- If the
mesh shaders
feature is not enabled,
dstStageMask
must not containPIPELINE_STAGE_MESH_SHADER_BIT_NV
- If the
task shaders
feature is not enabled,
dstStageMask
must not containPIPELINE_STAGE_TASK_SHADER_BIT_NV
- The
srcAccessMask
member of each element ofpMemoryBarriers
must only include access flags that are supported by one or more of the pipeline stages insrcStageMask
, as specified in the table of supported access types - The
dstAccessMask
member of each element ofpMemoryBarriers
must only include access flags that are supported by one or more of the pipeline stages indstStageMask
, as specified in the table of supported access types - For any element of
pBufferMemoryBarriers
, if itssrcQueueFamilyIndex
anddstQueueFamilyIndex
members are equal, or if itssrcQueueFamilyIndex
is the queue family index that was used to create the command pool thatcommandBuffer
was allocated from, then itssrcAccessMask
member must only contain access flags that are supported by one or more of the pipeline stages insrcStageMask
, as specified in the table of supported access types - For any element of
pBufferMemoryBarriers
, if itssrcQueueFamilyIndex
anddstQueueFamilyIndex
members are equal, or if itsdstQueueFamilyIndex
is the queue family index that was used to create the command pool thatcommandBuffer
was allocated from, then itsdstAccessMask
member must only contain access flags that are supported by one or more of the pipeline stages indstStageMask
, as specified in the table of supported access types - For any element of
pImageMemoryBarriers
, if itssrcQueueFamilyIndex
anddstQueueFamilyIndex
members are equal, or if itssrcQueueFamilyIndex
is the queue family index that was used to create the command pool thatcommandBuffer
was allocated from, then itssrcAccessMask
member must only contain access flags that are supported by one or more of the pipeline stages insrcStageMask
, as specified in the table of supported access types - For any element of
pImageMemoryBarriers
, if itssrcQueueFamilyIndex
anddstQueueFamilyIndex
members are equal, or if itsdstQueueFamilyIndex
is the queue family index that was used to create the command pool thatcommandBuffer
was allocated from, then itsdstAccessMask
member must only contain access flags that are supported by one or more of the pipeline stages indstStageMask
, as specified in the table of supported access types
Valid Usage (Implicit)
commandBuffer
must be a validCommandBuffer
handle
srcStageMask
must be a valid combination ofPipelineStageFlagBits
valuessrcStageMask
must not be0
dstStageMask
must be a valid combination ofPipelineStageFlagBits
valuesdstStageMask
must not be0
dependencyFlags
must be a valid combination ofDependencyFlagBits
values- If
memoryBarrierCount
is not0
,pMemoryBarriers
must be a valid pointer to an array ofmemoryBarrierCount
validMemoryBarrier
structures - If
bufferMemoryBarrierCount
is not0
,pBufferMemoryBarriers
must be a valid pointer to an array ofbufferMemoryBarrierCount
validBufferMemoryBarrier
structures - If
imageMemoryBarrierCount
is not0
,pImageMemoryBarriers
must be a valid pointer to an array ofimageMemoryBarrierCount
validImageMemoryBarrier
structures commandBuffer
must be in the recording state- The
CommandPool
thatcommandBuffer
was allocated from must support transfer, graphics, or compute operations
Host Synchronization
- Host access to
commandBuffer
must be externally synchronized
- Host access to the
CommandPool
thatcommandBuffer
was allocated from must be externally synchronized
Command Properties
'
Command Buffer Levels | Render Pass Scope | Supported Queue Types | Pipeline Type |
---|---|---|---|
Primary Secondary | Both | Transfer Graphics Compute |
See Also
BufferMemoryBarrier
,
CommandBuffer
,
DependencyFlags
,
ImageMemoryBarrier
,
MemoryBarrier
,
PipelineStageFlags
cmdBeginQuery :: forall io. MonadIO io => CommandBuffer -> QueryPool -> ("query" ::: Word32) -> QueryControlFlags -> io () Source #
vkCmdBeginQuery - Begin a query
Parameters
commandBuffer
is the command buffer into which this command will be recorded.
queryPool
is the query pool that will manage the results of the query.query
is the query index within the query pool that will contain the results.flags
is a bitmask ofQueryControlFlagBits
specifying constraints on the types of queries that can be performed.
Description
If the queryType
of the pool is
QUERY_TYPE_OCCLUSION
and flags
contains
QUERY_CONTROL_PRECISE_BIT
, an
implementation must return a result that matches the actual number of
samples passed. This is described in more detail in
Occlusion Queries.
Calling cmdBeginQuery
is equivalent to calling
cmdBeginQueryIndexedEXT
with the index
parameter set to zero.
After beginning a query, that query is considered active within the command buffer it was called in until that same query is ended. Queries active in a primary command buffer when secondary command buffers are executed are considered active for those secondary command buffers.
Valid Usage
queryPool
must have been created with aqueryType
that differs from that of any queries that are active withincommandBuffer
- All queries used by the command must be unavailable
- The
queryType
used to createqueryPool
must not beQUERY_TYPE_TIMESTAMP
- If the
precise occlusion queries
feature is not enabled, or the
queryType
used to createqueryPool
was notQUERY_TYPE_OCCLUSION
,flags
must not containQUERY_CONTROL_PRECISE_BIT
query
must be less than the number of queries inqueryPool
- If the
queryType
used to createqueryPool
wasQUERY_TYPE_OCCLUSION
, theCommandPool
thatcommandBuffer
was allocated from must support graphics operations - If the
queryType
used to createqueryPool
wasQUERY_TYPE_PIPELINE_STATISTICS
and any of thepipelineStatistics
indicate graphics operations, theCommandPool
thatcommandBuffer
was allocated from must support graphics operations - If the
queryType
used to createqueryPool
wasQUERY_TYPE_PIPELINE_STATISTICS
and any of thepipelineStatistics
indicate compute operations, theCommandPool
thatcommandBuffer
was allocated from must support compute operations commandBuffer
must not be a protected command buffer- If called within a render pass instance, the sum of
query
and the number of bits set in the current subpass’s view mask must be less than or equal to the number of queries inqueryPool
- If the
queryType
used to createqueryPool
wasQUERY_TYPE_TRANSFORM_FEEDBACK_STREAM_EXT
theCommandPool
thatcommandBuffer
was allocated from must support graphics operations - If the
queryType
used to createqueryPool
wasQUERY_TYPE_TRANSFORM_FEEDBACK_STREAM_EXT
thenPhysicalDeviceTransformFeedbackPropertiesEXT
::transformFeedbackQueries
must be supported - If
queryPool
was created with aqueryType
ofQUERY_TYPE_PERFORMANCE_QUERY_KHR
, the profiling lock must have been held beforebeginCommandBuffer
was called oncommandBuffer
- If
queryPool
was created with aqueryType
ofQUERY_TYPE_PERFORMANCE_QUERY_KHR
and one of the counters used to createqueryPool
wasPERFORMANCE_COUNTER_SCOPE_COMMAND_BUFFER_KHR
, the query begin must be the first recorded command incommandBuffer
- If
queryPool
was created with aqueryType
ofQUERY_TYPE_PERFORMANCE_QUERY_KHR
and one of the counters used to createqueryPool
wasPERFORMANCE_COUNTER_SCOPE_RENDER_PASS_KHR
, the begin command must not be recorded within a render pass instance - If
queryPool
was created with aqueryType
ofQUERY_TYPE_PERFORMANCE_QUERY_KHR
and another query pool with aqueryType
QUERY_TYPE_PERFORMANCE_QUERY_KHR
has been used withincommandBuffer
, its parent primary command buffer or secondary command buffer recorded within the same parent primary command buffer ascommandBuffer
, the performanceCounterMultipleQueryPools feature must be enabled - If
queryPool
was created with aqueryType
ofQUERY_TYPE_PERFORMANCE_QUERY_KHR
, this command must not be recorded in a command buffer that, either directly or through secondary command buffers, also contains acmdResetQueryPool
command affecting the same query
Valid Usage (Implicit)
commandBuffer
must be a validCommandBuffer
handle
queryPool
must be a validQueryPool
handleflags
must be a valid combination ofQueryControlFlagBits
valuescommandBuffer
must be in the recording state- The
CommandPool
thatcommandBuffer
was allocated from must support graphics, or compute operations - Both of
commandBuffer
, andqueryPool
must have been created, allocated, or retrieved from the sameDevice
Host Synchronization
- Host access to
commandBuffer
must be externally synchronized
- Host access to the
CommandPool
thatcommandBuffer
was allocated from must be externally synchronized
Command Properties
'
Command Buffer Levels | Render Pass Scope | Supported Queue Types | Pipeline Type |
---|---|---|---|
Primary Secondary | Both | Graphics Compute |
See Also
cmdUseQuery :: forall io r. MonadIO io => CommandBuffer -> QueryPool -> Word32 -> QueryControlFlags -> io r -> io r Source #
This function will call the supplied action between calls to
cmdBeginQuery
and cmdEndQuery
Note that cmdEndQuery
is *not* called if an exception is thrown by the
inner action.
cmdEndQuery :: forall io. MonadIO io => CommandBuffer -> QueryPool -> ("query" ::: Word32) -> io () Source #
vkCmdEndQuery - Ends a query
Parameters
commandBuffer
is the command buffer into which this command will be recorded.
queryPool
is the query pool that is managing the results of the query.query
is the query index within the query pool where the result is stored.
Description
Calling cmdEndQuery
is equivalent to calling
cmdEndQueryIndexedEXT
with
the index
parameter set to zero.
As queries operate asynchronously, ending a query does not immediately
set the query’s status to available. A query is considered finished
when the final results of the query are ready to be retrieved by
getQueryPoolResults
and cmdCopyQueryPoolResults
,
and this is when the query’s status is set to available.
Once a query is ended the query must finish in finite time, unless the state of the query is changed using other commands, e.g. by issuing a reset of the query.
Valid Usage
- All queries used by the command must be active
query
must be less than the number of queries inqueryPool
commandBuffer
must not be a protected command buffer- If
cmdEndQuery
is called within a render pass instance, the sum ofquery
and the number of bits set in the current subpass’s view mask must be less than or equal to the number of queries inqueryPool
- If
queryPool
was created with aqueryType
ofQUERY_TYPE_PERFORMANCE_QUERY_KHR
and one or more of the counters used to createqueryPool
wasPERFORMANCE_COUNTER_SCOPE_COMMAND_BUFFER_KHR
, thecmdEndQuery
must be the last recorded command incommandBuffer
- If
queryPool
was created with aqueryType
ofQUERY_TYPE_PERFORMANCE_QUERY_KHR
and one or more of the counters used to createqueryPool
wasPERFORMANCE_COUNTER_SCOPE_RENDER_PASS_KHR
, thecmdEndQuery
must not be recorded within a render pass instance
Valid Usage (Implicit)
commandBuffer
must be a validCommandBuffer
handle
queryPool
must be a validQueryPool
handlecommandBuffer
must be in the recording state- The
CommandPool
thatcommandBuffer
was allocated from must support graphics, or compute operations - Both of
commandBuffer
, andqueryPool
must have been created, allocated, or retrieved from the sameDevice
Host Synchronization
- Host access to
commandBuffer
must be externally synchronized
- Host access to the
CommandPool
thatcommandBuffer
was allocated from must be externally synchronized
Command Properties
'
Command Buffer Levels | Render Pass Scope | Supported Queue Types | Pipeline Type |
---|---|---|---|
Primary Secondary | Both | Graphics Compute |
See Also
cmdResetQueryPool :: forall io. MonadIO io => CommandBuffer -> QueryPool -> ("firstQuery" ::: Word32) -> ("queryCount" ::: Word32) -> io () Source #
vkCmdResetQueryPool - Reset queries in a query pool
Parameters
commandBuffer
is the command buffer into which this command will be recorded.
queryPool
is the handle of the query pool managing the queries being reset.firstQuery
is the initial query index to reset.queryCount
is the number of queries to reset.
Description
When executed on a queue, this command sets the status of query indices
[firstQuery
, firstQuery
+ queryCount
- 1] to unavailable.
If the queryType
used to create queryPool
was
QUERY_TYPE_PERFORMANCE_QUERY_KHR
, this
command sets the status of query indices [firstQuery
, firstQuery
+
queryCount
- 1] to unavailable for each pass of queryPool
, as
indicated by a call to
getPhysicalDeviceQueueFamilyPerformanceQueryPassesKHR
.
Note
Because cmdResetQueryPool
resets all the passes of the indicated
queries, applications must not record a cmdResetQueryPool
command for
a queryPool
created with
QUERY_TYPE_PERFORMANCE_QUERY_KHR
in a
command buffer that needs to be submitted multiple times as indicated by
a call to
getPhysicalDeviceQueueFamilyPerformanceQueryPassesKHR
.
Otherwise applications will never be able to complete the recorded
queries.
Valid Usage
firstQuery
must be less than the number of queries inqueryPool
- The sum of
firstQuery
andqueryCount
must be less than or equal to the number of queries inqueryPool
- All queries used by the command must not be active
- If
queryPool
was created withQUERY_TYPE_PERFORMANCE_QUERY_KHR
, this command must not be recorded in a command buffer that, either directly or through secondary command buffers, also contains begin commands for a query from the set of queries [firstQuery
,firstQuery
+queryCount
- 1]
Valid Usage (Implicit)
commandBuffer
must be a validCommandBuffer
handle
queryPool
must be a validQueryPool
handlecommandBuffer
must be in the recording state- The
CommandPool
thatcommandBuffer
was allocated from must support graphics, or compute operations - This command must only be called outside of a render pass instance
- Both of
commandBuffer
, andqueryPool
must have been created, allocated, or retrieved from the sameDevice
Host Synchronization
- Host access to
commandBuffer
must be externally synchronized
- Host access to the
CommandPool
thatcommandBuffer
was allocated from must be externally synchronized
Command Properties
'
Command Buffer Levels | Render Pass Scope | Supported Queue Types | Pipeline Type |
---|---|---|---|
Primary Secondary | Outside | Graphics Compute |
See Also
cmdWriteTimestamp :: forall io. MonadIO io => CommandBuffer -> PipelineStageFlagBits -> QueryPool -> ("query" ::: Word32) -> io () Source #
vkCmdWriteTimestamp - Write a device timestamp into a query object
Parameters
commandBuffer
is the command buffer into which the command will be recorded.
pipelineStage
is one of thePipelineStageFlagBits
, specifying a stage of the pipeline.queryPool
is the query pool that will manage the timestamp.query
is the query within the query pool that will contain the timestamp.
Description
cmdWriteTimestamp
latches the value of the timer when all previous
commands have completed executing as far as the specified pipeline
stage, and writes the timestamp value to memory. When the timestamp
value is written, the availability status of the query is set to
available.
Note
If an implementation is unable to detect completion and latch the timer at any specific stage of the pipeline, it may instead do so at any logically later stage.
cmdCopyQueryPoolResults
can then be called to copy the timestamp
value from the query pool into buffer memory, with ordering and
synchronization behavior equivalent to how other queries operate.
Timestamp values can also be retrieved from the query pool using
getQueryPoolResults
. As with other queries, the
query must be reset using cmdResetQueryPool
or
resetQueryPool
before requesting the timestamp value be written to it.
While cmdWriteTimestamp
can be called inside or outside of a render
pass instance, cmdCopyQueryPoolResults
must only be called outside
of a render pass instance.
Timestamps may only be meaningfully compared if they are written by commands submitted to the same queue.
Note
An example of such a comparison is determining the execution time of a sequence of commands.
If cmdWriteTimestamp
is called while executing a render pass instance
that has multiview enabled, the timestamp uses N consecutive query
indices in the query pool (starting at query
) where N is the number of
bits set in the view mask of the subpass the command is executed in. The
resulting query values are determined by an implementation-dependent
choice of one of the following behaviors:
- The first query is a timestamp value and (if more than one bit is set in the view mask) zero is written to the remaining queries. If two timestamps are written in the same subpass, the sum of the execution time of all views between those commands is the difference between the first query written by each command.
- All N queries are timestamp values. If two timestamps are written in the same subpass, the sum of the execution time of all views between those commands is the sum of the difference between corresponding queries written by each command. The difference between corresponding queries may be the execution time of a single view.
In either case, the application can sum the differences between all N queries to determine the total execution time.
Valid Usage
queryPool
must have been created with aqueryType
ofQUERY_TYPE_TIMESTAMP
- The query identified by
queryPool
andquery
must be unavailable - The command pool’s queue family must support a non-zero
timestampValidBits
- All queries used by the command must be unavailable
- If
cmdWriteTimestamp
is called within a render pass instance, the sum ofquery
and the number of bits set in the current subpass’s view mask must be less than or equal to the number of queries inqueryPool
Valid Usage (Implicit)
commandBuffer
must be a validCommandBuffer
handle
pipelineStage
must be a validPipelineStageFlagBits
valuequeryPool
must be a validQueryPool
handlecommandBuffer
must be in the recording state- The
CommandPool
thatcommandBuffer
was allocated from must support transfer, graphics, or compute operations - Both of
commandBuffer
, andqueryPool
must have been created, allocated, or retrieved from the sameDevice
Host Synchronization
- Host access to
commandBuffer
must be externally synchronized
- Host access to the
CommandPool
thatcommandBuffer
was allocated from must be externally synchronized
Command Properties
'
Command Buffer Levels | Render Pass Scope | Supported Queue Types | Pipeline Type |
---|---|---|---|
Primary Secondary | Both | Transfer Graphics Compute | Transfer |
See Also
cmdCopyQueryPoolResults :: forall io. MonadIO io => CommandBuffer -> QueryPool -> ("firstQuery" ::: Word32) -> ("queryCount" ::: Word32) -> ("dstBuffer" ::: Buffer) -> ("dstOffset" ::: DeviceSize) -> ("stride" ::: DeviceSize) -> QueryResultFlags -> io () Source #
vkCmdCopyQueryPoolResults - Copy the results of queries in a query pool to a buffer object
Parameters
commandBuffer
is the command buffer into which this command will be recorded.
queryPool
is the query pool managing the queries containing the desired results.firstQuery
is the initial query index.queryCount
is the number of queries.firstQuery
andqueryCount
together define a range of queries.dstBuffer
is aBuffer
object that will receive the results of the copy command.dstOffset
is an offset intodstBuffer
.stride
is the stride in bytes between results for individual queries withindstBuffer
. The required size of the backing memory fordstBuffer
is determined as described above forgetQueryPoolResults
.flags
is a bitmask ofQueryResultFlagBits
specifying how and when results are returned.
Description
cmdCopyQueryPoolResults
is guaranteed to see the effect of previous
uses of cmdResetQueryPool
in the same queue, without any additional
synchronization. Thus, the results will always reflect the most recent
use of the query.
flags
has the same possible values described above for the flags
parameter of getQueryPoolResults
, but the
different style of execution causes some subtle behavioral differences.
Because cmdCopyQueryPoolResults
executes in order with respect to
other query commands, there is less ambiguity about which use of a query
is being requested.
Results for all requested occlusion queries, pipeline statistics
queries, transform feedback queries, and timestamp queries are written
as 64-bit unsigned integer values if
QUERY_RESULT_64_BIT
is set or
32-bit unsigned integer values otherwise. Performance queries store
results in a tightly packed array whose type is determined by the unit
member of the corresponding
PerformanceCounterKHR
.
If neither of
QUERY_RESULT_WAIT_BIT
and
QUERY_RESULT_WITH_AVAILABILITY_BIT
are set, results are only written out for queries in the available
state.
If QUERY_RESULT_WAIT_BIT
is
set, the implementation will wait for each query’s status to be in the
available state before retrieving the numerical results for that query.
This is guaranteed to reflect the most recent use of the query on the
same queue, assuming that the query is not being simultaneously used by
other queues. If the query does not become available in a finite amount
of time (e.g. due to not issuing a query since the last reset), a
ERROR_DEVICE_LOST
error may occur.
Similarly, if
QUERY_RESULT_WITH_AVAILABILITY_BIT
is set and
QUERY_RESULT_WAIT_BIT
is not
set, the availability is guaranteed to reflect the most recent use of
the query on the same queue, assuming that the query is not being
simultaneously used by other queues. As with
getQueryPoolResults
, implementations must
guarantee that if they return a non-zero availability value, then the
numerical results are valid.
If QUERY_RESULT_PARTIAL_BIT
is
set, QUERY_RESULT_WAIT_BIT
is
not set, and the query’s status is unavailable, an intermediate result
value between zero and the final result value is written for that query.
QUERY_RESULT_PARTIAL_BIT
must not be used if the pool’s queryType
is
QUERY_TYPE_TIMESTAMP
.
cmdCopyQueryPoolResults
is considered to be a transfer operation, and
its writes to buffer memory must be synchronized using
PIPELINE_STAGE_TRANSFER_BIT
and ACCESS_TRANSFER_WRITE_BIT
before using the results.
Valid Usage
dstOffset
must be less than the size ofdstBuffer
firstQuery
must be less than the number of queries inqueryPool
- The sum of
firstQuery
andqueryCount
must be less than or equal to the number of queries inqueryPool
- If
QUERY_RESULT_64_BIT
is not set inflags
thendstOffset
andstride
must be multiples of4
- If
QUERY_RESULT_64_BIT
is set inflags
thendstOffset
andstride
must be multiples of8
dstBuffer
must have enough storage, fromdstOffset
, to contain the result of each query, as described heredstBuffer
must have been created withBUFFER_USAGE_TRANSFER_DST_BIT
usage flag- If
dstBuffer
is non-sparse then it must be bound completely and contiguously to a singleDeviceMemory
object - If the
queryType
used to createqueryPool
wasQUERY_TYPE_TIMESTAMP
,flags
must not containQUERY_RESULT_PARTIAL_BIT
- If the
queryType
used to createqueryPool
wasQUERY_TYPE_PERFORMANCE_QUERY_KHR
,PhysicalDevicePerformanceQueryPropertiesKHR
::allowCommandBufferQueryCopies
must beTRUE
- If the
queryType
used to createqueryPool
wasQUERY_TYPE_PERFORMANCE_QUERY_KHR
,flags
must not containQUERY_RESULT_WITH_AVAILABILITY_BIT
,QUERY_RESULT_PARTIAL_BIT
orQUERY_RESULT_64_BIT
- If the
queryType
used to createqueryPool
wasQUERY_TYPE_PERFORMANCE_QUERY_KHR
, thequeryPool
must have been submitted once for each pass as retrieved via a call togetPhysicalDeviceQueueFamilyPerformanceQueryPassesKHR
cmdCopyQueryPoolResults
must not be called if thequeryType
used to createqueryPool
wasQUERY_TYPE_PERFORMANCE_QUERY_INTEL
Valid Usage (Implicit)
commandBuffer
must be a validCommandBuffer
handle
queryPool
must be a validQueryPool
handledstBuffer
must be a validBuffer
handleflags
must be a valid combination ofQueryResultFlagBits
valuescommandBuffer
must be in the recording state- The
CommandPool
thatcommandBuffer
was allocated from must support graphics, or compute operations - This command must only be called outside of a render pass instance
- Each of
commandBuffer
,dstBuffer
, andqueryPool
must have been created, allocated, or retrieved from the sameDevice
Host Synchronization
- Host access to
commandBuffer
must be externally synchronized
- Host access to the
CommandPool
thatcommandBuffer
was allocated from must be externally synchronized
Command Properties
'
Command Buffer Levels | Render Pass Scope | Supported Queue Types | Pipeline Type |
---|---|---|---|
Primary Secondary | Outside | Graphics Compute | Transfer |
See Also
Buffer
, CommandBuffer
,
DeviceSize
, QueryPool
,
QueryResultFlags
cmdPushConstants :: forall io. MonadIO io => CommandBuffer -> PipelineLayout -> ShaderStageFlags -> ("offset" ::: Word32) -> ("size" ::: Word32) -> ("values" ::: Ptr ()) -> io () Source #
vkCmdPushConstants - Update the values of push constants
Parameters
commandBuffer
is the command buffer in which the push constant update will be recorded.
layout
is the pipeline layout used to program the push constant updates.stageFlags
is a bitmask ofShaderStageFlagBits
specifying the shader stages that will use the push constants in the updated range.offset
is the start offset of the push constant range to update, in units of bytes.size
is the size of the push constant range to update, in units of bytes.pValues
is a pointer to an array ofsize
bytes containing the new push constant values.
Description
Note
As stageFlags
needs to include all flags the relevant push constant
ranges were created with, any flags that are not supported by the queue
family that the CommandPool
used to allocate
commandBuffer
was created on are ignored.
Valid Usage
- For each byte in the range specified by
offset
andsize
and for each shader stage instageFlags
, there must be a push constant range inlayout
that includes that byte and that stage
- For each byte in the range specified by
offset
andsize
and for each push constant range that overlaps that byte,stageFlags
must include all stages in that push constant range’sPushConstantRange
::stageFlags
offset
must be a multiple of4
size
must be a multiple of4
offset
must be less thanPhysicalDeviceLimits
::maxPushConstantsSize
size
must be less than or equal toPhysicalDeviceLimits
::maxPushConstantsSize
minusoffset
Valid Usage (Implicit)
commandBuffer
must be a validCommandBuffer
handle
layout
must be a validPipelineLayout
handlestageFlags
must be a valid combination ofShaderStageFlagBits
valuesstageFlags
must not be0
pValues
must be a valid pointer to an array ofsize
bytescommandBuffer
must be in the recording state- The
CommandPool
thatcommandBuffer
was allocated from must support graphics, or compute operations size
must be greater than0
- Both of
commandBuffer
, andlayout
must have been created, allocated, or retrieved from the sameDevice
Host Synchronization
- Host access to
commandBuffer
must be externally synchronized
- Host access to the
CommandPool
thatcommandBuffer
was allocated from must be externally synchronized
Command Properties
'
Command Buffer Levels | Render Pass Scope | Supported Queue Types | Pipeline Type |
---|---|---|---|
Primary Secondary | Both | Graphics Compute |
See Also
cmdBeginRenderPass :: forall a io. (Extendss RenderPassBeginInfo a, PokeChain a, MonadIO io) => CommandBuffer -> RenderPassBeginInfo a -> SubpassContents -> io () Source #
vkCmdBeginRenderPass - Begin a new render pass
Parameters
commandBuffer
is the command buffer in which to record the command.
pRenderPassBegin
is a pointer to aRenderPassBeginInfo
structure specifying the render pass to begin an instance of, and the framebuffer the instance uses.contents
is aSubpassContents
value specifying how the commands in the first subpass will be provided.
Description
After beginning a render pass instance, the command buffer is ready to record the commands for the first subpass of that render pass.
Valid Usage
- If any of the
initialLayout
orfinalLayout
member of theAttachmentDescription
structures or thelayout
member of theAttachmentReference
structures specified when creating the render pass specified in therenderPass
member ofpRenderPassBegin
isIMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL
then the corresponding attachment image view of the framebuffer specified in theframebuffer
member ofpRenderPassBegin
must have been created with ausage
value includingIMAGE_USAGE_COLOR_ATTACHMENT_BIT
- If any of the
initialLayout
orfinalLayout
member of theAttachmentDescription
structures or thelayout
member of theAttachmentReference
structures specified when creating the render pass specified in therenderPass
member ofpRenderPassBegin
isIMAGE_LAYOUT_DEPTH_READ_ONLY_STENCIL_ATTACHMENT_OPTIMAL
,IMAGE_LAYOUT_DEPTH_ATTACHMENT_STENCIL_READ_ONLY_OPTIMAL
,IMAGE_LAYOUT_DEPTH_STENCIL_ATTACHMENT_OPTIMAL
, orIMAGE_LAYOUT_DEPTH_STENCIL_READ_ONLY_OPTIMAL
then the corresponding attachment image view of the framebuffer specified in theframebuffer
member ofpRenderPassBegin
must have been created with ausage
value includingIMAGE_USAGE_DEPTH_STENCIL_ATTACHMENT_BIT
- If any of the
initialLayout
orfinalLayout
member of theAttachmentDescription
structures or thelayout
member of theAttachmentReference
structures specified when creating the render pass specified in therenderPass
member ofpRenderPassBegin
isIMAGE_LAYOUT_DEPTH_ATTACHMENT_OPTIMAL
, orIMAGE_LAYOUT_DEPTH_READ_ONLY_OPTIMAL
,IMAGE_LAYOUT_STENCIL_ATTACHMENT_OPTIMAL
, orIMAGE_LAYOUT_STENCIL_READ_ONLY_OPTIMAL
then the corresponding attachment image view of the framebuffer specified in theframebuffer
member ofpRenderPassBegin
must have been created with ausage
value includingIMAGE_USAGE_DEPTH_STENCIL_ATTACHMENT_BIT
- If any of the
stencilInitialLayout
orstencilFinalLayout
member of theAttachmentDescriptionStencilLayout
structures or thestencilLayout
member of theAttachmentReferenceStencilLayout
structures specified when creating the render pass specified in therenderPass
member ofpRenderPassBegin
isIMAGE_LAYOUT_STENCIL_ATTACHMENT_OPTIMAL
, orIMAGE_LAYOUT_STENCIL_READ_ONLY_OPTIMAL
then the corresponding attachment image view of the framebuffer specified in theframebuffer
member ofpRenderPassBegin
must have been created with ausage
value includingIMAGE_USAGE_DEPTH_STENCIL_ATTACHMENT_BIT
- If any of the
initialLayout
orfinalLayout
member of theAttachmentDescription
structures or thelayout
member of theAttachmentReference
structures specified when creating the render pass specified in therenderPass
member ofpRenderPassBegin
isIMAGE_LAYOUT_SHADER_READ_ONLY_OPTIMAL
then the corresponding attachment image view of the framebuffer specified in theframebuffer
member ofpRenderPassBegin
must have been created with ausage
value includingIMAGE_USAGE_SAMPLED_BIT
orIMAGE_USAGE_INPUT_ATTACHMENT_BIT
- If any of the
initialLayout
orfinalLayout
member of theAttachmentDescription
structures or thelayout
member of theAttachmentReference
structures specified when creating the render pass specified in therenderPass
member ofpRenderPassBegin
isIMAGE_LAYOUT_TRANSFER_SRC_OPTIMAL
then the corresponding attachment image view of the framebuffer specified in theframebuffer
member ofpRenderPassBegin
must have been created with ausage
value includingIMAGE_USAGE_TRANSFER_SRC_BIT
- If any of the
initialLayout
orfinalLayout
member of theAttachmentDescription
structures or thelayout
member of theAttachmentReference
structures specified when creating the render pass specified in therenderPass
member ofpRenderPassBegin
isIMAGE_LAYOUT_TRANSFER_DST_OPTIMAL
then the corresponding attachment image view of the framebuffer specified in theframebuffer
member ofpRenderPassBegin
must have been created with ausage
value includingIMAGE_USAGE_TRANSFER_DST_BIT
- If any of the
initialLayout
members of theAttachmentDescription
structures specified when creating the render pass specified in therenderPass
member ofpRenderPassBegin
is notIMAGE_LAYOUT_UNDEFINED
, then each suchinitialLayout
must be equal to the current layout of the corresponding attachment image subresource of the framebuffer specified in theframebuffer
member ofpRenderPassBegin
- The
srcStageMask
anddstStageMask
members of any element of thepDependencies
member ofRenderPassCreateInfo
used to createrenderPass
must be supported by the capabilities of the queue family identified by thequeueFamilyIndex
member of theCommandPoolCreateInfo
used to create the command pool whichcommandBuffer
was allocated from - For any attachment in
framebuffer
that is used byrenderPass
and is bound to memory locations that are also bound to another attachment used byrenderPass
, and if at least one of those uses causes either attachment to be written to, both attachments must have had theATTACHMENT_DESCRIPTION_MAY_ALIAS_BIT
set
Valid Usage (Implicit)
commandBuffer
must be a validCommandBuffer
handle
pRenderPassBegin
must be a valid pointer to a validRenderPassBeginInfo
structurecontents
must be a validSubpassContents
valuecommandBuffer
must be in the recording state- The
CommandPool
thatcommandBuffer
was allocated from must support graphics operations - This command must only be called outside of a render pass instance
commandBuffer
must be a primaryCommandBuffer
Host Synchronization
- Host access to
commandBuffer
must be externally synchronized
- Host access to the
CommandPool
thatcommandBuffer
was allocated from must be externally synchronized
Command Properties
'
Command Buffer Levels | Render Pass Scope | Supported Queue Types | Pipeline Type |
---|---|---|---|
Primary | Outside | Graphics | Graphics |
See Also
cmdUseRenderPass :: forall a io r. (Extendss RenderPassBeginInfo a, PokeChain a, MonadIO io) => CommandBuffer -> RenderPassBeginInfo a -> SubpassContents -> io r -> io r Source #
This function will call the supplied action between calls to
cmdBeginRenderPass
and cmdEndRenderPass
Note that cmdEndRenderPass
is *not* called if an exception is thrown
by the inner action.
cmdNextSubpass :: forall io. MonadIO io => CommandBuffer -> SubpassContents -> io () Source #
vkCmdNextSubpass - Transition to the next subpass of a render pass
Parameters
commandBuffer
is the command buffer in which to record the command.
contents
specifies how the commands in the next subpass will be provided, in the same fashion as the corresponding parameter ofcmdBeginRenderPass
.
Description
The subpass index for a render pass begins at zero when
cmdBeginRenderPass
is recorded, and increments each time
cmdNextSubpass
is recorded.
Moving to the next subpass automatically performs any multisample
resolve operations in the subpass being ended. End-of-subpass
multisample resolves are treated as color attachment writes for the
purposes of synchronization. This applies to resolve operations for both
color and depth/stencil attachments. That is, they are considered to
execute in the
PIPELINE_STAGE_COLOR_ATTACHMENT_OUTPUT_BIT
pipeline stage and their writes are synchronized with
ACCESS_COLOR_ATTACHMENT_WRITE_BIT
.
Synchronization between rendering within a subpass and any resolve
operations at the end of the subpass occurs automatically, without need
for explicit dependencies or pipeline barriers. However, if the resolve
attachment is also used in a different subpass, an explicit dependency
is needed.
After transitioning to the next subpass, the application can record the commands for that subpass.
Valid Usage
- The current subpass index must be less than the number of subpasses in the render pass minus one
- This command must not be recorded when transform feedback is active
Valid Usage (Implicit)
commandBuffer
must be a validCommandBuffer
handle
contents
must be a validSubpassContents
valuecommandBuffer
must be in the recording state- The
CommandPool
thatcommandBuffer
was allocated from must support graphics operations - This command must only be called inside of a render pass instance
commandBuffer
must be a primaryCommandBuffer
Host Synchronization
- Host access to
commandBuffer
must be externally synchronized
- Host access to the
CommandPool
thatcommandBuffer
was allocated from must be externally synchronized
Command Properties
'
Command Buffer Levels | Render Pass Scope | Supported Queue Types | Pipeline Type |
---|---|---|---|
Primary | Inside | Graphics | Graphics |
See Also
cmdEndRenderPass :: forall io. MonadIO io => CommandBuffer -> io () Source #
vkCmdEndRenderPass - End the current render pass
Parameters
commandBuffer
is the command buffer in which to end the current render pass instance.
Description
Ending a render pass instance performs any multisample resolve operations on the final subpass.
Valid Usage
- The current subpass index must be equal to the number of subpasses in the render pass minus one
- This command must not be recorded when transform feedback is active
Valid Usage (Implicit)
commandBuffer
must be a validCommandBuffer
handle
commandBuffer
must be in the recording state- The
CommandPool
thatcommandBuffer
was allocated from must support graphics operations - This command must only be called inside of a render pass instance
commandBuffer
must be a primaryCommandBuffer
Host Synchronization
- Host access to
commandBuffer
must be externally synchronized
- Host access to the
CommandPool
thatcommandBuffer
was allocated from must be externally synchronized
Command Properties
'
Command Buffer Levels | Render Pass Scope | Supported Queue Types | Pipeline Type |
---|---|---|---|
Primary | Inside | Graphics | Graphics |
See Also
cmdExecuteCommands :: forall io. MonadIO io => CommandBuffer -> ("commandBuffers" ::: Vector CommandBuffer) -> io () Source #
vkCmdExecuteCommands - Execute a secondary command buffer from a primary command buffer
Parameters
commandBuffer
is a handle to a primary command buffer that the secondary command buffers are executed in.
commandBufferCount
is the length of thepCommandBuffers
array.pCommandBuffers
is a pointer to an array ofcommandBufferCount
secondary command buffer handles, which are recorded to execute in the primary command buffer in the order they are listed in the array.
Description
If any element of pCommandBuffers
was not recorded with the
COMMAND_BUFFER_USAGE_SIMULTANEOUS_USE_BIT
flag, and it was recorded into any other primary command buffer which is
currently in the
executable or recording state,
that primary command buffer becomes
invalid.
Valid Usage
- Each element of
pCommandBuffers
must have been allocated with alevel
ofCOMMAND_BUFFER_LEVEL_SECONDARY
- Each element of
pCommandBuffers
must be in the pending or executable state - If any element of
pCommandBuffers
was not recorded with theCOMMAND_BUFFER_USAGE_SIMULTANEOUS_USE_BIT
flag, it must not be in the pending state - If any element of
pCommandBuffers
was not recorded with theCOMMAND_BUFFER_USAGE_SIMULTANEOUS_USE_BIT
flag, it must not have already been recorded tocommandBuffer
- If any element of
pCommandBuffers
was not recorded with theCOMMAND_BUFFER_USAGE_SIMULTANEOUS_USE_BIT
flag, it must not appear more than once inpCommandBuffers
- Each element of
pCommandBuffers
must have been allocated from aCommandPool
that was created for the same queue family as theCommandPool
from whichcommandBuffer
was allocated - If
cmdExecuteCommands
is being called within a render pass instance, that render pass instance must have been begun with thecontents
parameter ofcmdBeginRenderPass
set toSUBPASS_CONTENTS_SECONDARY_COMMAND_BUFFERS
- If
cmdExecuteCommands
is being called within a render pass instance, each element ofpCommandBuffers
must have been recorded with theCOMMAND_BUFFER_USAGE_RENDER_PASS_CONTINUE_BIT
- If
cmdExecuteCommands
is being called within a render pass instance, each element ofpCommandBuffers
must have been recorded withCommandBufferInheritanceInfo
::subpass
set to the index of the subpass which the given command buffer will be executed in - If
cmdExecuteCommands
is being called within a render pass instance, the render passes specified in thepBeginInfo->pInheritanceInfo->renderPass
members of thebeginCommandBuffer
commands used to begin recording each element ofpCommandBuffers
must be compatible with the current render pass - If
cmdExecuteCommands
is being called within a render pass instance, and any element ofpCommandBuffers
was recorded withCommandBufferInheritanceInfo
::framebuffer
not equal toNULL_HANDLE
, thatFramebuffer
must match theFramebuffer
used in the current render pass instance - If
cmdExecuteCommands
is being called within a render pass instance that includedRenderPassTransformBeginInfoQCOM
in thepNext
chain ofRenderPassBeginInfo
, then each element ofpCommandBuffers
must have been recorded withCommandBufferInheritanceRenderPassTransformInfoQCOM
in thepNext
chain ofCommandBufferBeginInfo
- If
cmdExecuteCommands
is being called within a render pass instance that includedRenderPassTransformBeginInfoQCOM
in thepNext
chain ofRenderPassBeginInfo
, then each element ofpCommandBuffers
must have been recorded withCommandBufferInheritanceRenderPassTransformInfoQCOM
::transform
identical toRenderPassTransformBeginInfoQCOM
::transform
- If
cmdExecuteCommands
is being called within a render pass instance that includedRenderPassTransformBeginInfoQCOM
in thepNext
chain ofRenderPassBeginInfo
, then each element ofpCommandBuffers
must have been recorded withCommandBufferInheritanceRenderPassTransformInfoQCOM
::renderArea
identical toRenderPassBeginInfo
::renderArea
- If
cmdExecuteCommands
is not being called within a render pass instance, each element ofpCommandBuffers
must not have been recorded with theCOMMAND_BUFFER_USAGE_RENDER_PASS_CONTINUE_BIT
- If the
inherited queries
feature is not enabled,
commandBuffer
must not have any queries active - If
commandBuffer
has aQUERY_TYPE_OCCLUSION
query active, then each element ofpCommandBuffers
must have been recorded withCommandBufferInheritanceInfo
::occlusionQueryEnable
set toTRUE
- If
commandBuffer
has aQUERY_TYPE_OCCLUSION
query active, then each element ofpCommandBuffers
must have been recorded withCommandBufferInheritanceInfo
::queryFlags
having all bits set that are set for the query - If
commandBuffer
has aQUERY_TYPE_PIPELINE_STATISTICS
query active, then each element ofpCommandBuffers
must have been recorded withCommandBufferInheritanceInfo
::pipelineStatistics
having all bits set that are set in theQueryPool
the query uses - Each element of
pCommandBuffers
must not begin any query types that are active incommandBuffer
- If
commandBuffer
is a protected command buffer, then each element ofpCommandBuffers
must be a protected command buffer - If
commandBuffer
is an unprotected command buffer, then each element ofpCommandBuffers
must be an unprotected command buffer - This command must not be recorded when transform feedback is active
Valid Usage (Implicit)
commandBuffer
must be a validCommandBuffer
handle
pCommandBuffers
must be a valid pointer to an array ofcommandBufferCount
validCommandBuffer
handlescommandBuffer
must be in the recording state- The
CommandPool
thatcommandBuffer
was allocated from must support transfer, graphics, or compute operations commandBuffer
must be a primaryCommandBuffer
commandBufferCount
must be greater than0
- Both of
commandBuffer
, and the elements ofpCommandBuffers
must have been created, allocated, or retrieved from the sameDevice
Host Synchronization
- Host access to
commandBuffer
must be externally synchronized
- Host access to the
CommandPool
thatcommandBuffer
was allocated from must be externally synchronized
Command Properties
'
Command Buffer Levels | Render Pass Scope | Supported Queue Types | Pipeline Type |
---|---|---|---|
Primary | Both | Transfer Graphics Compute |
See Also
VkViewport - Structure specifying a viewport
Description
The framebuffer depth coordinate z
f may be represented using either
a fixed-point or floating-point representation. However, a
floating-point representation must be used if the depth/stencil
attachment has a floating-point depth component. If an m-bit fixed-point
representation is used, we assume that it represents each value
\(\frac{k}{2^m - 1}\), where k ∈ { 0, 1, …, 2m-1 }, as k (e.g. 1.0 is
represented in binary as a string of all ones).
The viewport parameters shown in the above equations are found from these values as
- ox =
x
+width
/ 2 - oy =
y
+height
/ 2 - oz =
minDepth
- px =
width
- py =
height
- pz =
maxDepth
-minDepth
.
If a render pass transform is enabled, the values (px,py) and (ox, oy) defining the viewport are transformed as described in render pass transform before participating in the viewport transform.
The application can specify a negative term for height
, which has
the effect of negating the y coordinate in clip space before performing
the transform. When using a negative height
, the application should
also adjust the y
value to point to the lower left corner of the
viewport instead of the upper left corner. Using the negative height
allows the application to avoid having to negate the y component of the
Position
output from the last vertex processing stage in shaders that
also target other graphics APIs.
The width and height of the implementation-dependent maximum viewport dimensions must be greater than or equal to the width and height of the largest image which can be created and attached to a framebuffer.
The floating-point viewport bounds are represented with an implementation-dependent precision.
Valid Usage
width
must be greater than0.0
width
must be less than or equal toPhysicalDeviceLimits
::maxViewportDimensions
[0]- The absolute value of
height
must be less than or equal toPhysicalDeviceLimits
::maxViewportDimensions
[1] x
must be greater than or equal toviewportBoundsRange
[0]- (
x
+width
) must be less than or equal toviewportBoundsRange
[1] y
must be greater than or equal toviewportBoundsRange
[0]y
must be less than or equal toviewportBoundsRange
[1]- (
y
+height
) must be greater than or equal toviewportBoundsRange
[0] - (
y
+height
) must be less than or equal toviewportBoundsRange
[1] - Unless
VK_EXT_depth_range_unrestricted
extension is enabledminDepth
must be between0.0
and1.0
, inclusive - Unless
VK_EXT_depth_range_unrestricted
extension is enabledmaxDepth
must be between0.0
and1.0
, inclusive
See Also
Viewport | |
|
Instances
Show Viewport Source # | |
Storable Viewport Source # | |
Defined in Vulkan.Core10.CommandBufferBuilding | |
FromCStruct Viewport Source # | |
Defined in Vulkan.Core10.CommandBufferBuilding | |
ToCStruct Viewport Source # | |
Defined in Vulkan.Core10.CommandBufferBuilding | |
Zero Viewport Source # | |
Defined in Vulkan.Core10.CommandBufferBuilding |
VkRect2D - Structure specifying a two-dimensional subregion
See Also
BindImageMemoryDeviceGroupInfo
,
ClearRect
,
CommandBufferInheritanceRenderPassTransformInfoQCOM
,
DeviceGroupRenderPassBeginInfo
,
DisplayPresentInfoKHR
,
Extent2D
,
Offset2D
,
PipelineDiscardRectangleStateCreateInfoEXT
,
PipelineViewportExclusiveScissorStateCreateInfoNV
,
PipelineViewportStateCreateInfo
,
RenderPassBeginInfo
,
cmdSetDiscardRectangleEXT
,
cmdSetExclusiveScissorNV
,
cmdSetScissor
,
getPhysicalDevicePresentRectanglesKHR
Instances
Show Rect2D Source # | |
FromCStruct Rect2D Source # | |
Defined in Vulkan.Core10.CommandBufferBuilding | |
ToCStruct Rect2D Source # | |
Defined in Vulkan.Core10.CommandBufferBuilding | |
Zero Rect2D Source # | |
Defined in Vulkan.Core10.CommandBufferBuilding |
VkClearRect - Structure specifying a clear rectangle
Description
The layers [baseArrayLayer
, baseArrayLayer
+ layerCount
) counting
from the base layer of the attachment image view are cleared.
See Also
ClearRect | |
|
Instances
Show ClearRect Source # | |
FromCStruct ClearRect Source # | |
Defined in Vulkan.Core10.CommandBufferBuilding | |
ToCStruct ClearRect Source # | |
Defined in Vulkan.Core10.CommandBufferBuilding | |
Zero ClearRect Source # | |
Defined in Vulkan.Core10.CommandBufferBuilding |
data BufferCopy Source #
VkBufferCopy - Structure specifying a buffer copy operation
Valid Usage
- The
size
must be greater than0
See Also
BufferCopy | |
|
Instances
VkImageCopy - Structure specifying an image copy operation
Description
For IMAGE_TYPE_3D
images, copies are
performed slice by slice starting with the z
member of the srcOffset
or dstOffset
, and copying depth
slices. For images with multiple
layers, copies are performed layer by layer starting with the
baseArrayLayer
member of the srcSubresource
or dstSubresource
and
copying layerCount
layers. Image data can be copied between images
with different image types. If one image is
IMAGE_TYPE_3D
and the other image is
IMAGE_TYPE_2D
with multiple layers, then
each slice is copied to or from a different layer.
Copies involving a
multi-planar image format
specify the region to be copied in terms of the plane to be copied,
not the coordinates of the multi-planar image. This means that copies
accessing the R/B planes of “_422
” format images must fit the
copied region within half the width
of the parent image, and that
copies accessing the R/B planes of “_420
” format images must fit
the copied region within half the width
and height
of the parent
image.
Valid Usage
- If neither the calling command’s
srcImage
nor the calling command’sdstImage
has a multi-planar image format then theaspectMask
member ofsrcSubresource
anddstSubresource
must match
- If the calling command’s
srcImage
has aFormat
with two planes then thesrcSubresource
aspectMask
must beIMAGE_ASPECT_PLANE_0_BIT
orIMAGE_ASPECT_PLANE_1_BIT
- If the calling command’s
srcImage
has aFormat
with three planes then thesrcSubresource
aspectMask
must beIMAGE_ASPECT_PLANE_0_BIT
,IMAGE_ASPECT_PLANE_1_BIT
, orIMAGE_ASPECT_PLANE_2_BIT
- If the calling command’s
dstImage
has aFormat
with two planes then thedstSubresource
aspectMask
must beIMAGE_ASPECT_PLANE_0_BIT
orIMAGE_ASPECT_PLANE_1_BIT
- If the calling command’s
dstImage
has aFormat
with three planes then thedstSubresource
aspectMask
must beIMAGE_ASPECT_PLANE_0_BIT
,IMAGE_ASPECT_PLANE_1_BIT
, orIMAGE_ASPECT_PLANE_2_BIT
- If the calling command’s
srcImage
has a multi-planar image format and thedstImage
does not have a multi-planar image format, thedstSubresource
aspectMask
must beIMAGE_ASPECT_COLOR_BIT
- If the calling command’s
dstImage
has a multi-planar image format and thesrcImage
does not have a multi-planar image format, thesrcSubresource
aspectMask
must beIMAGE_ASPECT_COLOR_BIT
- The number of slices of the
extent
(for 3D) or layers of thesrcSubresource
(for non-3D) must match the number of slices of theextent
(for 3D) or layers of thedstSubresource
(for non-3D) - If either of the calling command’s
srcImage
ordstImage
parameters are ofImageType
IMAGE_TYPE_3D
, thebaseArrayLayer
andlayerCount
members of the corresponding subresource must be0
and1
, respectively - The
aspectMask
member ofsrcSubresource
must specify aspects present in the calling command’ssrcImage
- The
aspectMask
member ofdstSubresource
must specify aspects present in the calling command’sdstImage
srcOffset.x
and (extent.width
+srcOffset.x
) must both be greater than or equal to0
and less than or equal to the source image subresource widthsrcOffset.y
and (extent.height
+srcOffset.y
) must both be greater than or equal to0
and less than or equal to the source image subresource height- If the calling command’s
srcImage
is of typeIMAGE_TYPE_1D
, thensrcOffset.y
must be0
andextent.height
must be1
srcOffset.z
and (extent.depth
+srcOffset.z
) must both be greater than or equal to0
and less than or equal to the source image subresource depth- If the calling command’s
srcImage
is of typeIMAGE_TYPE_1D
, thensrcOffset.z
must be0
andextent.depth
must be1
- If the calling command’s
dstImage
is of typeIMAGE_TYPE_1D
, thendstOffset.z
must be0
andextent.depth
must be1
- If the calling command’s
srcImage
is of typeIMAGE_TYPE_2D
, thensrcOffset.z
must be0
- If the calling command’s
dstImage
is of typeIMAGE_TYPE_2D
, thendstOffset.z
must be0
- If both
srcImage
anddstImage
are of typeIMAGE_TYPE_2D
thenextent.depth
must be1
- If the calling command’s
srcImage
is of typeIMAGE_TYPE_2D
, and thedstImage
is of typeIMAGE_TYPE_3D
, thenextent.depth
must equal to thelayerCount
member ofsrcSubresource
- If the calling command’s
dstImage
is of typeIMAGE_TYPE_2D
, and thesrcImage
is of typeIMAGE_TYPE_3D
, thenextent.depth
must equal to thelayerCount
member ofdstSubresource
dstOffset.x
and (extent.width
+dstOffset.x
) must both be greater than or equal to0
and less than or equal to the destination image subresource widthdstOffset.y
and (extent.height
+dstOffset.y
) must both be greater than or equal to0
and less than or equal to the destination image subresource height- If the calling command’s
dstImage
is of typeIMAGE_TYPE_1D
, thendstOffset.y
must be0
andextent.height
must be1
dstOffset.z
and (extent.depth
+dstOffset.z
) must both be greater than or equal to0
and less than or equal to the destination image subresource depth- If the calling command’s
srcImage
is a compressed image, or a single-plane, “_422
” image format, all members ofsrcOffset
must be a multiple of the corresponding dimensions of the compressed texel block - If the calling command’s
srcImage
is a compressed image, or a single-plane, “_422
” image format,extent.width
must be a multiple of the compressed texel block width or (extent.width
+srcOffset.x
) must equal the source image subresource width - If the calling command’s
srcImage
is a compressed image, or a single-plane, “_422
” image format,extent.height
must be a multiple of the compressed texel block height or (extent.height
+srcOffset.y
) must equal the source image subresource height - If the calling command’s
srcImage
is a compressed image, or a single-plane, “_422
” image format,extent.depth
must be a multiple of the compressed texel block depth or (extent.depth
+srcOffset.z
) must equal the source image subresource depth - If the calling command’s
dstImage
is a compressed format image, or a single-plane, “_422
” image format, all members ofdstOffset
must be a multiple of the corresponding dimensions of the compressed texel block - If the calling command’s
dstImage
is a compressed format image, or a single-plane, “_422
” image format,extent.width
must be a multiple of the compressed texel block width or (extent.width
+dstOffset.x
) must equal the destination image subresource width - If the calling command’s
dstImage
is a compressed format image, or a single-plane, “_422
” image format,extent.height
must be a multiple of the compressed texel block height or (extent.height
+dstOffset.y
) must equal the destination image subresource height - If the calling command’s
dstImage
is a compressed format image, or a single-plane, “_422
” image format,extent.depth
must be a multiple of the compressed texel block depth or (extent.depth
+dstOffset.z
) must equal the destination image subresource depth
Valid Usage (Implicit)
srcSubresource
must be a validImageSubresourceLayers
structure
dstSubresource
must be a validImageSubresourceLayers
structure
See Also
ImageCopy | |
|
Instances
Show ImageCopy Source # | |
FromCStruct ImageCopy Source # | |
Defined in Vulkan.Core10.CommandBufferBuilding | |
ToCStruct ImageCopy Source # | |
Defined in Vulkan.Core10.CommandBufferBuilding | |
Zero ImageCopy Source # | |
Defined in Vulkan.Core10.CommandBufferBuilding |
VkImageBlit - Structure specifying an image blit operation
Description
For each element of the pRegions
array, a blit operation is performed
the specified source and destination regions.
Valid Usage
- The
aspectMask
member ofsrcSubresource
anddstSubresource
must match
- The
layerCount
member ofsrcSubresource
anddstSubresource
must match - If either of the calling command’s
srcImage
ordstImage
parameters are ofImageType
IMAGE_TYPE_3D
, thebaseArrayLayer
andlayerCount
members of bothsrcSubresource
anddstSubresource
must be0
and1
, respectively - The
aspectMask
member ofsrcSubresource
must specify aspects present in the calling command’ssrcImage
- The
aspectMask
member ofdstSubresource
must specify aspects present in the calling command’sdstImage
srcOffset
[0].x andsrcOffset
[1].x must both be greater than or equal to0
and less than or equal to the source image subresource widthsrcOffset
[0].y andsrcOffset
[1].y must both be greater than or equal to0
and less than or equal to the source image subresource height- If the calling command’s
srcImage
is of typeIMAGE_TYPE_1D
, thensrcOffset
[0].y must be0
andsrcOffset
[1].y must be1
srcOffset
[0].z andsrcOffset
[1].z must both be greater than or equal to0
and less than or equal to the source image subresource depth- If the calling command’s
srcImage
is of typeIMAGE_TYPE_1D
orIMAGE_TYPE_2D
, thensrcOffset
[0].z must be0
andsrcOffset
[1].z must be1
dstOffset
[0].x anddstOffset
[1].x must both be greater than or equal to0
and less than or equal to the destination image subresource widthdstOffset
[0].y anddstOffset
[1].y must both be greater than or equal to0
and less than or equal to the destination image subresource height- If the calling command’s
dstImage
is of typeIMAGE_TYPE_1D
, thendstOffset
[0].y must be0
anddstOffset
[1].y must be1
dstOffset
[0].z anddstOffset
[1].z must both be greater than or equal to0
and less than or equal to the destination image subresource depth- If the calling command’s
dstImage
is of typeIMAGE_TYPE_1D
orIMAGE_TYPE_2D
, thendstOffset
[0].z must be0
anddstOffset
[1].z must be1
Valid Usage (Implicit)
srcSubresource
must be a validImageSubresourceLayers
structure
dstSubresource
must be a validImageSubresourceLayers
structure
See Also
ImageBlit | |
|
Instances
Show ImageBlit Source # | |
FromCStruct ImageBlit Source # | |
Defined in Vulkan.Core10.CommandBufferBuilding | |
ToCStruct ImageBlit Source # | |
Defined in Vulkan.Core10.CommandBufferBuilding | |
Zero ImageBlit Source # | |
Defined in Vulkan.Core10.CommandBufferBuilding |
data BufferImageCopy Source #
VkBufferImageCopy - Structure specifying a buffer image copy operation
Description
When copying to or from a depth or stencil aspect, the data in buffer memory uses a layout that is a (mostly) tightly packed representation of the depth or stencil data. Specifically:
- data copied to or from the stencil aspect of any depth/stencil
format is tightly packed with one
FORMAT_S8_UINT
value per texel. - data copied to or from the depth aspect of a
FORMAT_D16_UNORM
orFORMAT_D16_UNORM_S8_UINT
format is tightly packed with oneFORMAT_D16_UNORM
value per texel. - data copied to or from the depth aspect of a
FORMAT_D32_SFLOAT
orFORMAT_D32_SFLOAT_S8_UINT
format is tightly packed with oneFORMAT_D32_SFLOAT
value per texel. - data copied to or from the depth aspect of a
FORMAT_X8_D24_UNORM_PACK32
orFORMAT_D24_UNORM_S8_UINT
format is packed with one 32-bit word per texel with the D24 value in the LSBs of the word, and undefined values in the eight MSBs.
Note
To copy both the depth and stencil aspects of a depth/stencil format,
two entries in pRegions
can be used, where one specifies the depth
aspect in imageSubresource
, and the other specifies the stencil
aspect.
Because depth or stencil aspect buffer to image copies may require format conversions on some implementations, they are not supported on queues that do not support graphics.
When copying to a depth aspect, and the
VK_EXT_depth_range_unrestricted
extension is not enabled, the data in
buffer memory must be in the range [0,1], or the resulting values are
undefined.
Copies are done layer by layer starting with image layer
baseArrayLayer
member of imageSubresource
. layerCount
layers are
copied from the source image or to the destination image.
Valid Usage
- If the calling command’s
Image
parameter’s format is not a depth/stencil format or a multi-planar format, thenbufferOffset
must be a multiple of the format’s texel block size
- If the calling command’s
Image
parameter’s format is a multi-planar format, thenbufferOffset
must be a multiple of the element size of the compatible format for the format and theaspectMask
of theimageSubresource
as defined in https://www.khronos.org/registry/vulkan/specs/1.2-extensions/html/vkspec.html#formats-compatible-planes bufferOffset
must be a multiple of4
bufferRowLength
must be0
, or greater than or equal to thewidth
member ofimageExtent
bufferImageHeight
must be0
, or greater than or equal to theheight
member ofimageExtent
imageOffset.x
and (imageExtent.width
+imageOffset.x
) must both be greater than or equal to0
and less than or equal to the image subresource width where this refers to the width of the plane of the image involved in the copy in the case of a multi-planar formatimageOffset.y
and (imageExtent.height +imageOffset.y
) must both be greater than or equal to0
and less than or equal to the image subresource height where this refers to the height of the plane of the image involved in the copy in the case of a multi-planar format- If the calling command’s
srcImage
(cmdCopyImageToBuffer
) ordstImage
(cmdCopyBufferToImage
) is of typeIMAGE_TYPE_1D
, thenimageOffset.y
must be0
andimageExtent.height
must be1
imageOffset.z
and (imageExtent.depth +imageOffset.z
) must both be greater than or equal to0
and less than or equal to the image subresource depth- If the calling command’s
srcImage
(cmdCopyImageToBuffer
) ordstImage
(cmdCopyBufferToImage
) is of typeIMAGE_TYPE_1D
orIMAGE_TYPE_2D
, thenimageOffset.z
must be0
andimageExtent.depth
must be1
- If the calling command’s
Image
parameter is a compressed image, or a single-plane, “_422
” image format,bufferRowLength
must be a multiple of the compressed texel block width - If the calling command’s
Image
parameter is a compressed image, or a single-plane, “_422
” image format,bufferImageHeight
must be a multiple of the compressed texel block height - If the calling command’s
Image
parameter is a compressed image, or a single-plane, “_422
” image format, all members ofimageOffset
must be a multiple of the corresponding dimensions of the compressed texel block - If the calling command’s
Image
parameter is a compressed image, or a single-plane, “_422
” image format,bufferOffset
must be a multiple of the compressed texel block size in bytes - If the calling command’s
Image
parameter is a compressed image, or a single-plane, “_422
” image format,imageExtent.width
must be a multiple of the compressed texel block width or (imageExtent.width
+imageOffset.x
) must equal the image subresource width - If the calling command’s
Image
parameter is a compressed image, or a single-plane, “_422
” image format,imageExtent.height
must be a multiple of the compressed texel block height or (imageExtent.height
+imageOffset.y
) must equal the image subresource height - If the calling command’s
Image
parameter is a compressed image, or a single-plane, “_422
” image format,imageExtent.depth
must be a multiple of the compressed texel block depth or (imageExtent.depth
+imageOffset.z
) must equal the image subresource depth - The
aspectMask
member ofimageSubresource
must specify aspects present in the calling command’sImage
parameter - If the calling command’s
Image
parameter’s format is a multi-planar format, then theaspectMask
member ofimageSubresource
must beIMAGE_ASPECT_PLANE_0_BIT
,IMAGE_ASPECT_PLANE_1_BIT
, orIMAGE_ASPECT_PLANE_2_BIT
(withIMAGE_ASPECT_PLANE_2_BIT
valid only for image formats with three planes) - The
aspectMask
member ofimageSubresource
must only have a single bit set - If the calling command’s
Image
parameter is ofImageType
IMAGE_TYPE_3D
, thebaseArrayLayer
andlayerCount
members ofimageSubresource
must be0
and1
, respectively
Valid Usage (Implicit)
imageSubresource
must be a validImageSubresourceLayers
structure
See Also
DeviceSize
,
Extent3D
,
ImageSubresourceLayers
,
Offset3D
, cmdCopyBufferToImage
,
cmdCopyImageToBuffer
BufferImageCopy | |
|
Instances
Show BufferImageCopy Source # | |
Defined in Vulkan.Core10.CommandBufferBuilding showsPrec :: Int -> BufferImageCopy -> ShowS # show :: BufferImageCopy -> String # showList :: [BufferImageCopy] -> ShowS # | |
FromCStruct BufferImageCopy Source # | |
Defined in Vulkan.Core10.CommandBufferBuilding | |
ToCStruct BufferImageCopy Source # | |
Defined in Vulkan.Core10.CommandBufferBuilding withCStruct :: BufferImageCopy -> (Ptr BufferImageCopy -> IO b) -> IO b Source # pokeCStruct :: Ptr BufferImageCopy -> BufferImageCopy -> IO b -> IO b Source # withZeroCStruct :: (Ptr BufferImageCopy -> IO b) -> IO b Source # pokeZeroCStruct :: Ptr BufferImageCopy -> IO b -> IO b Source # cStructSize :: Int Source # | |
Zero BufferImageCopy Source # | |
Defined in Vulkan.Core10.CommandBufferBuilding |
data ImageResolve Source #
VkImageResolve - Structure specifying an image resolve operation
Valid Usage
- The
aspectMask
member ofsrcSubresource
anddstSubresource
must only containIMAGE_ASPECT_COLOR_BIT
- The
layerCount
member ofsrcSubresource
anddstSubresource
must match - If either of the calling command’s
srcImage
ordstImage
parameters are ofImageType
IMAGE_TYPE_3D
, thebaseArrayLayer
andlayerCount
members of bothsrcSubresource
anddstSubresource
must be0
and1
, respectively srcOffset.x
and (extent.width
+srcOffset.x
) must both be greater than or equal to0
and less than or equal to the source image subresource widthsrcOffset.y
and (extent.height
+srcOffset.y
) must both be greater than or equal to0
and less than or equal to the source image subresource height- If the calling command’s
srcImage
is of typeIMAGE_TYPE_1D
, thensrcOffset.y
must be0
andextent.height
must be1
srcOffset.z
and (extent.depth
+srcOffset.z
) must both be greater than or equal to0
and less than or equal to the source image subresource depth- If the calling command’s
srcImage
is of typeIMAGE_TYPE_1D
orIMAGE_TYPE_2D
, thensrcOffset.z
must be0
andextent.depth
must be1
dstOffset.x
and (extent.width
+dstOffset.x
) must both be greater than or equal to0
and less than or equal to the destination image subresource widthdstOffset.y
and (extent.height
+dstOffset.y
) must both be greater than or equal to0
and less than or equal to the destination image subresource height- If the calling command’s
dstImage
is of typeIMAGE_TYPE_1D
, thendstOffset.y
must be0
andextent.height
must be1
dstOffset.z
and (extent.depth
+dstOffset.z
) must both be greater than or equal to0
and less than or equal to the destination image subresource depth- If the calling command’s
dstImage
is of typeIMAGE_TYPE_1D
orIMAGE_TYPE_2D
, thendstOffset.z
must be0
andextent.depth
must be1
Valid Usage (Implicit)
srcSubresource
must be a validImageSubresourceLayers
structure
dstSubresource
must be a validImageSubresourceLayers
structure
See Also
ImageResolve | |
|
Instances
Show ImageResolve Source # | |
Defined in Vulkan.Core10.CommandBufferBuilding showsPrec :: Int -> ImageResolve -> ShowS # show :: ImageResolve -> String # showList :: [ImageResolve] -> ShowS # | |
FromCStruct ImageResolve Source # | |
Defined in Vulkan.Core10.CommandBufferBuilding peekCStruct :: Ptr ImageResolve -> IO ImageResolve Source # | |
ToCStruct ImageResolve Source # | |
Defined in Vulkan.Core10.CommandBufferBuilding withCStruct :: ImageResolve -> (Ptr ImageResolve -> IO b) -> IO b Source # pokeCStruct :: Ptr ImageResolve -> ImageResolve -> IO b -> IO b Source # withZeroCStruct :: (Ptr ImageResolve -> IO b) -> IO b Source # pokeZeroCStruct :: Ptr ImageResolve -> IO b -> IO b Source # cStructSize :: Int Source # | |
Zero ImageResolve Source # | |
Defined in Vulkan.Core10.CommandBufferBuilding zero :: ImageResolve Source # |
data RenderPassBeginInfo (es :: [Type]) Source #
VkRenderPassBeginInfo - Structure specifying render pass begin info
Description
renderArea
is the render area that is affected by the render pass
instance. The effects of attachment load, store and multisample resolve
operations are restricted to the pixels whose x and y coordinates fall
within the render area on all attachments. The render area extends to
all layers of framebuffer
. The application must ensure (using
scissor if necessary) that all rendering is contained within the render
area. The render area, after any transform specified by
RenderPassTransformBeginInfoQCOM
::transform
is applied, must be contained within the framebuffer dimensions.
If
render pass transform
is enabled, then renderArea
must equal the framebuffer
pre-transformed dimensions. After renderArea
has been transformed by
RenderPassTransformBeginInfoQCOM
::transform
,
the resulting render area must be equal to the framebuffer dimensions.
When multiview is enabled, the resolve operation at the end of a subpass applies to all views in the view mask.
Note
There may be a performance cost for using a render area smaller than the framebuffer, unless it matches the render area granularity for the render pass.
Valid Usage
clearValueCount
must be greater than the largest attachment index inrenderPass
that specifies aloadOp
(orstencilLoadOp
, if the attachment has a depth/stencil format) ofATTACHMENT_LOAD_OP_CLEAR
renderPass
must be compatible with therenderPass
member of theFramebufferCreateInfo
structure specified when creatingframebuffer
- If the
pNext
chain does not containDeviceGroupRenderPassBeginInfo
or itsdeviceRenderAreaCount
member is equal to 0,renderArea.offset.x
must be greater than or equal to 0 - If the
pNext
chain does not containDeviceGroupRenderPassBeginInfo
or itsdeviceRenderAreaCount
member is equal to 0,renderArea.offset.y
must be greater than or equal to 0 - If the
pNext
chain does not containDeviceGroupRenderPassBeginInfo
or itsdeviceRenderAreaCount
member is equal to 0,renderArea.offset.x
+renderArea.offset.width
must be less than or equal toFramebufferCreateInfo
::width
theframebuffer
was created with - If the
pNext
chain does not containDeviceGroupRenderPassBeginInfo
or itsdeviceRenderAreaCount
member is equal to 0,renderArea.offset.y
+renderArea.offset.height
must be less than or equal toFramebufferCreateInfo
::height
theframebuffer
was created with - If the
pNext
chain containsDeviceGroupRenderPassBeginInfo
, theoffset.x
member of each element ofpDeviceRenderAreas
must be greater than or equal to 0 - If the
pNext
chain containsDeviceGroupRenderPassBeginInfo
, theoffset.y
member of each element ofpDeviceRenderAreas
must be greater than or equal to 0 - If the
pNext
chain containsDeviceGroupRenderPassBeginInfo
,offset.x
+offset.width
of each element ofpDeviceRenderAreas
must be less than or equal toFramebufferCreateInfo
::width
theframebuffer
was created with - If the
pNext
chain containsDeviceGroupRenderPassBeginInfo
,offset.y
+offset.height
of each element ofpDeviceRenderAreas
must be less than or equal toFramebufferCreateInfo
::height
theframebuffer
was created with - If
framebuffer
was created with aFramebufferCreateInfo
::flags
value that did not includeFRAMEBUFFER_CREATE_IMAGELESS_BIT
, and thepNext
chain includes aRenderPassAttachmentBeginInfo
structure, itsattachmentCount
must be zero - If
framebuffer
was created with aFramebufferCreateInfo
::flags
value that includedFRAMEBUFFER_CREATE_IMAGELESS_BIT
, theattachmentCount
of aRenderPassAttachmentBeginInfo
structure included in thepNext
chain must be equal to the value ofFramebufferAttachmentsCreateInfo
::attachmentImageInfoCount
used to createframebuffer
- If
framebuffer
was created with aFramebufferCreateInfo
::flags
value that includedFRAMEBUFFER_CREATE_IMAGELESS_BIT_KHR
, each element of thepAttachments
member of aRenderPassAttachmentBeginInfo
structure included in thepNext
chain must have been created on the sameDevice
asframebuffer
andrenderPass
- If
framebuffer
was created with aFramebufferCreateInfo
::flags
value that includedFRAMEBUFFER_CREATE_IMAGELESS_BIT
, each element of thepAttachments
member of aRenderPassAttachmentBeginInfo
structure included in thepNext
chain must be aImageView
of an image created with a value ofImageCreateInfo
::flags
equal to theflags
member of the corresponding element ofFramebufferAttachmentsCreateInfoKHR
::pAttachments
used to createframebuffer
- If
framebuffer
was created with aFramebufferCreateInfo
::flags
value that includedFRAMEBUFFER_CREATE_IMAGELESS_BIT
, each element of thepAttachments
member of aRenderPassAttachmentBeginInfo
structure included in thepNext
chain must be aImageView
of an image created with a value ofImageCreateInfo
::usage
equal to theusage
member of the corresponding element ofFramebufferAttachmentsCreateInfo
::pAttachments
used to createframebuffer
- If
framebuffer
was created with aFramebufferCreateInfo
::flags
value that includedFRAMEBUFFER_CREATE_IMAGELESS_BIT
, each element of thepAttachments
member of aRenderPassAttachmentBeginInfo
structure included in thepNext
chain must be aImageView
with a width equal to thewidth
member of the corresponding element ofFramebufferAttachmentsCreateInfo
::pAttachments
used to createframebuffer
- If
framebuffer
was created with aFramebufferCreateInfo
::flags
value that includedFRAMEBUFFER_CREATE_IMAGELESS_BIT
, each element of thepAttachments
member of aRenderPassAttachmentBeginInfo
structure included in thepNext
chain must be aImageView
with a height equal to theheight
member of the corresponding element ofFramebufferAttachmentsCreateInfo
::pAttachments
used to createframebuffer
- If
framebuffer
was created with aFramebufferCreateInfo
::flags
value that includedFRAMEBUFFER_CREATE_IMAGELESS_BIT
, each element of thepAttachments
member of aRenderPassAttachmentBeginInfo
structure included in thepNext
chain must be aImageView
of an image created with a value ofImageViewCreateInfo
::subresourceRange.layerCount
equal to thelayerCount
member of the corresponding element ofFramebufferAttachmentsCreateInfo
::pAttachments
used to createframebuffer
- If
framebuffer
was created with aFramebufferCreateInfo
::flags
value that includedFRAMEBUFFER_CREATE_IMAGELESS_BIT
, each element of thepAttachments
member of aRenderPassAttachmentBeginInfo
structure included in thepNext
chain must be aImageView
of an image created with a value ofImageFormatListCreateInfo
::viewFormatCount
equal to theviewFormatCount
member of the corresponding element ofFramebufferAttachmentsCreateInfo
::pAttachments
used to createframebuffer
- If
framebuffer
was created with aFramebufferCreateInfo
::flags
value that includedFRAMEBUFFER_CREATE_IMAGELESS_BIT
, each element of thepAttachments
member of aRenderPassAttachmentBeginInfo
structure included in thepNext
chain must be aImageView
of an image created with a set of elements inImageFormatListCreateInfo
::pViewFormats
equal to the set of elements in thepViewFormats
member of the corresponding element ofFramebufferAttachmentsCreateInfo
::pAttachments
used to createframebuffer
- If
framebuffer
was created with aFramebufferCreateInfo
::flags
value that includedFRAMEBUFFER_CREATE_IMAGELESS_BIT
, each element of thepAttachments
member of aRenderPassAttachmentBeginInfo
structure included in thepNext
chain must be aImageView
of an image created with a value ofImageViewCreateInfo
::format
equal to the corresponding value ofAttachmentDescription
::format
inrenderPass
- If
framebuffer
was created with aFramebufferCreateInfo
::flags
value that includedFRAMEBUFFER_CREATE_IMAGELESS_BIT
, each element of thepAttachments
member of aRenderPassAttachmentBeginInfo
structure included in thepNext
chain must be aImageView
of an image created with a value ofImageCreateInfo
::samples
equal to the corresponding value ofAttachmentDescription
::samples
inrenderPass
- If the
pNext
chain includesRenderPassTransformBeginInfoQCOM
,renderArea
::offset
must equal (0,0) - If the
pNext
chain includesRenderPassTransformBeginInfoQCOM
,renderArea
::extent
transformed byRenderPassTransformBeginInfoQCOM
::transform
must equal theframebuffer
dimensions
Valid Usage (Implicit)
sType
must beSTRUCTURE_TYPE_RENDER_PASS_BEGIN_INFO
- Each
pNext
member of any structure (including this one) in thepNext
chain must be eitherNULL
or a pointer to a valid instance ofDeviceGroupRenderPassBeginInfo
,RenderPassAttachmentBeginInfo
,RenderPassSampleLocationsBeginInfoEXT
, orRenderPassTransformBeginInfoQCOM
- The
sType
value of each struct in thepNext
chain must be unique renderPass
must be a validRenderPass
handleframebuffer
must be a validFramebuffer
handle- If
clearValueCount
is not0
,pClearValues
must be a valid pointer to an array ofclearValueCount
ClearValue
unions - Both of
framebuffer
, andrenderPass
must have been created, allocated, or retrieved from the sameDevice
See Also
ClearValue
,
Framebuffer
, Rect2D
,
RenderPass
,
StructureType
, cmdBeginRenderPass
,
cmdBeginRenderPass2
,
cmdBeginRenderPass2KHR
RenderPassBeginInfo | |
|
Instances
data ClearAttachment Source #
VkClearAttachment - Structure specifying a clear attachment
Description
No memory barriers are needed between cmdClearAttachments
and
preceding or subsequent draw or attachment clear commands in the same
subpass.
The cmdClearAttachments
command is not affected by the bound pipeline
state.
Attachments can also be cleared at the beginning of a render pass
instance by setting loadOp
(or stencilLoadOp
) of
AttachmentDescription
to
ATTACHMENT_LOAD_OP_CLEAR
, as
described for createRenderPass
.
Valid Usage
- If
aspectMask
includesIMAGE_ASPECT_COLOR_BIT
, it must not includeIMAGE_ASPECT_DEPTH_BIT
orIMAGE_ASPECT_STENCIL_BIT
aspectMask
must not includeIMAGE_ASPECT_METADATA_BIT
aspectMask
must not includeVK_IMAGE_ASPECT_MEMORY_PLANE_i_BIT_EXT
for any indexi
clearValue
must be a validClearValue
union
Valid Usage (Implicit)
aspectMask
must be a valid combination ofImageAspectFlagBits
values
aspectMask
must not be0
See Also
ClearAttachment | |
|
Instances
Show ClearAttachment Source # | |
Defined in Vulkan.Core10.CommandBufferBuilding showsPrec :: Int -> ClearAttachment -> ShowS # show :: ClearAttachment -> String # showList :: [ClearAttachment] -> ShowS # | |
ToCStruct ClearAttachment Source # | |
Defined in Vulkan.Core10.CommandBufferBuilding withCStruct :: ClearAttachment -> (Ptr ClearAttachment -> IO b) -> IO b Source # pokeCStruct :: Ptr ClearAttachment -> ClearAttachment -> IO b -> IO b Source # withZeroCStruct :: (Ptr ClearAttachment -> IO b) -> IO b Source # pokeZeroCStruct :: Ptr ClearAttachment -> IO b -> IO b Source # cStructSize :: Int Source # | |
Zero ClearAttachment Source # | |
Defined in Vulkan.Core10.CommandBufferBuilding |