C Specification
The VkPipelineColorBlendStateCreateInfo structure is defined as:
// Provided by VK_VERSION_1_0
typedef struct VkPipelineColorBlendStateCreateInfo {
    VkStructureType                               sType;
    const void*                                   pNext;
    VkPipelineColorBlendStateCreateFlags          flags;
    VkBool32                                      logicOpEnable;
    VkLogicOp                                     logicOp;
    uint32_t                                      attachmentCount;
    const VkPipelineColorBlendAttachmentState*    pAttachments;
    float                                         blendConstants[4];
} VkPipelineColorBlendStateCreateInfo;
Members
- 
sTypeis a VkStructureType value identifying this structure. - 
pNextisNULLor a pointer to a structure extending this structure. - 
flagsis reserved for future use. - 
logicOpEnablecontrols whether to apply Logical Operations. - 
logicOpselects which logical operation to apply. - 
attachmentCountis the number of VkPipelineColorBlendAttachmentState elements inpAttachments. - 
pAttachmentsis a pointer to an array of VkPipelineColorBlendAttachmentState structures defining blend state for each color attachment. - 
blendConstantsis a pointer to an array of four values used as the R, G, B, and A components of the blend constant that are used in blending, depending on the blend factor. 
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.