C Specification
The line stipple factor and pattern are specified by the
VkPipelineRasterizationLineStateCreateInfoEXT::lineStippleFactor
and
VkPipelineRasterizationLineStateCreateInfoEXT::lineStipplePattern
members of the currently active pipeline, if the pipeline was not created
with VK_DYNAMIC_STATE_LINE_STIPPLE_EXT
enabled.
Otherwise, the line stipple factor and pattern are set by calling
vkCmdSetLineStippleEXT
:
void vkCmdSetLineStippleEXT(
VkCommandBuffer commandBuffer,
uint32_t lineStippleFactor,
uint16_t lineStipplePattern);
Parameters
-
commandBuffer
is the command buffer into which the command will be recorded. -
lineStippleFactor
is the repeat factor used in stippled line rasterization. -
lineStipplePattern
is the bit pattern used in stippled line rasterization.
Description
See Also
Document Notes
For more information, see the Vulkan Specification
This page is extracted from the Vulkan Specification. Fixes and changes should be made to the Specification, not directly.
Copyright
Copyright (c) 2014-2019 Khronos Group. This work is licensed under a Creative Commons Attribution 4.0 International License.