コード例 #1
0
        /// <summary>
        ///
        /// </summary>
        internal static unsafe PhysicalDeviceScalarBlockLayoutFeatures MarshalFrom(SharpVk.Interop.Multivendor.PhysicalDeviceScalarBlockLayoutFeatures *pointer)
        {
            PhysicalDeviceScalarBlockLayoutFeatures result = default(PhysicalDeviceScalarBlockLayoutFeatures);

            result.ScalarBlockLayout = pointer->ScalarBlockLayout;
            return(result);
        }
コード例 #2
0
 /// <summary>
 ///
 /// </summary>
 internal unsafe void MarshalTo(SharpVk.Interop.Multivendor.PhysicalDeviceScalarBlockLayoutFeatures *pointer)
 {
     pointer->SType             = StructureType.PhysicalDeviceScalarBlockLayoutFeatures;
     pointer->Next              = null;
     pointer->ScalarBlockLayout = this.ScalarBlockLayout;
 }