Class VkPipelineColorBlendStateCreateInfo

java.lang.Object
org.lwjgl.system.Pointer.Default
org.lwjgl.system.Struct<VkPipelineColorBlendStateCreateInfo>
org.lwjgl.vulkan.VkPipelineColorBlendStateCreateInfo
All Implemented Interfaces:
AutoCloseable, org.lwjgl.system.NativeResource, org.lwjgl.system.Pointer

public class VkPipelineColorBlendStateCreateInfo extends org.lwjgl.system.Struct<VkPipelineColorBlendStateCreateInfo> implements org.lwjgl.system.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];
 }