public FramebufferAttachmentsCreateInfo
        (
            StructureType?sType           = StructureType.FramebufferAttachmentsCreateInfo,
            void *pNext                   = null,
            uint?attachmentImageInfoCount = null,
            FramebufferAttachmentImageInfo *pAttachmentImageInfos = null
        ) : this()
        {
            if (sType is not null)
            {
                SType = sType.Value;
            }

            if (pNext is not null)
            {
                PNext = pNext;
            }

            if (attachmentImageInfoCount is not null)
            {
                AttachmentImageInfoCount = attachmentImageInfoCount.Value;
            }

            if (pAttachmentImageInfos is not null)
            {
                PAttachmentImageInfos = pAttachmentImageInfos;
            }
        }
Exemplo n.º 2
0
 public FramebufferAttachmentsCreateInfo
 (
     StructureType sType           = StructureType.FramebufferAttachmentsCreateInfo,
     void *pNext                   = default,
     uint attachmentImageInfoCount = default,
     FramebufferAttachmentImageInfo *pAttachmentImageInfos = default
 )
 {
     SType = sType;
     PNext = pNext;
     AttachmentImageInfoCount = attachmentImageInfoCount;
     PAttachmentImageInfos    = pAttachmentImageInfos;
 }