Class VkPipelineColorBlendStateCreateInfo

All Implemented Interfaces:
AutoCloseable, NativeResource, Pointer

public class VkPipelineColorBlendStateCreateInfo extends Struct<VkPipelineColorBlendStateCreateInfo> implements NativeResource
Structure specifying parameters of a newly created pipeline color blend state.
Valid Usage
Valid Usage (Implicit)
See Also

VkGraphicsPipelineCreateInfo, VkPipelineColorBlendAttachmentState

Layout


 struct VkPipelineColorBlendStateCreateInfo {
     VkStructureType sType();
     void const * pNext();
     VkPipelineColorBlendStateCreateFlags flags();
     VkBool32 logicOpEnable();
     VkLogicOp logicOp();
     uint32_t attachmentCount();
     VkPipelineColorBlendAttachmentState const * pAttachments();
     float blendConstants()[4];
 }