Exemple #1
0
        public RenderPassInputAttachmentAspectCreateInfo
        (
            StructureType?sType       = StructureType.RenderPassInputAttachmentAspectCreateInfo,
            void *pNext               = null,
            uint?aspectReferenceCount = null,
            InputAttachmentAspectReference *pAspectReferences = null
        ) : this()
        {
            if (sType is not null)
            {
                SType = sType.Value;
            }

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

            if (aspectReferenceCount is not null)
            {
                AspectReferenceCount = aspectReferenceCount.Value;
            }

            if (pAspectReferences is not null)
            {
                PAspectReferences = pAspectReferences;
            }
        }
Exemple #2
0
 public RenderPassInputAttachmentAspectCreateInfo
 (
     StructureType sType       = StructureType.RenderPassInputAttachmentAspectCreateInfo,
     void *pNext               = default,
     uint aspectReferenceCount = default,
     InputAttachmentAspectReference *pAspectReferences = default
 )
 {
     SType = sType;
     PNext = pNext;
     AspectReferenceCount = aspectReferenceCount;
     PAspectReferences    = pAspectReferences;
 }