public PresentTimesInfoGOOGLE
        (
            StructureType?sType       = StructureType.PresentTimesInfoGoogle,
            void *pNext               = null,
            uint?swapchainCount       = null,
            PresentTimeGOOGLE *pTimes = null
        ) : this()
        {
            if (sType is not null)
            {
                SType = sType.Value;
            }

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

            if (swapchainCount is not null)
            {
                SwapchainCount = swapchainCount.Value;
            }

            if (pTimes is not null)
            {
                PTimes = pTimes;
            }
        }
예제 #2
0
 public PresentTimesInfoGOOGLE
 (
     StructureType sType       = StructureType.PresentTimesInfoGoogle,
     void *pNext               = default,
     uint swapchainCount       = default,
     PresentTimeGOOGLE *pTimes = default
 )
 {
     SType          = sType;
     PNext          = pNext;
     SwapchainCount = swapchainCount;
     PTimes         = pTimes;
 }