示例#1
0
 public RenderPassCreateInfo2KHR
 (
     StructureType sType                  = StructureType.RenderPassCreateInfo2,
     void *pNext                          = default,
     RenderPassCreateFlags flags          = default,
     uint attachmentCount                 = default,
     AttachmentDescription2 *pAttachments = default,
     uint subpassCount                    = default,
     SubpassDescription2 *pSubpasses      = default,
     uint dependencyCount                 = default,
     SubpassDependency2 *pDependencies    = default,
     uint correlatedViewMaskCount         = default,
     uint *pCorrelatedViewMasks           = default
 )
 {
     SType                   = sType;
     PNext                   = pNext;
     Flags                   = flags;
     AttachmentCount         = attachmentCount;
     PAttachments            = pAttachments;
     SubpassCount            = subpassCount;
     PSubpasses              = pSubpasses;
     DependencyCount         = dependencyCount;
     PDependencies           = pDependencies;
     CorrelatedViewMaskCount = correlatedViewMaskCount;
     PCorrelatedViewMasks    = pCorrelatedViewMasks;
 }
 public RenderPassCreateInfo
 (
     StructureType sType                 = StructureType.RenderPassCreateInfo,
     void *pNext                         = default,
     RenderPassCreateFlags flags         = default,
     uint attachmentCount                = default,
     AttachmentDescription *pAttachments = default,
     uint subpassCount                   = default,
     SubpassDescription *pSubpasses      = default,
     uint dependencyCount                = default,
     SubpassDependency *pDependencies    = default
 )
 {
     SType           = sType;
     PNext           = pNext;
     Flags           = flags;
     AttachmentCount = attachmentCount;
     PAttachments    = pAttachments;
     SubpassCount    = subpassCount;
     PSubpasses      = pSubpasses;
     DependencyCount = dependencyCount;
     PDependencies   = pDependencies;
 }