Exemple #1
0
        /// <summary>
        ///
        /// </summary>
        /// <param name="pointer">
        /// </param>
        internal static unsafe PhysicalDeviceCoverageReductionModeFeatures MarshalFrom(SharpVk.Interop.NVidia.PhysicalDeviceCoverageReductionModeFeatures *pointer)
        {
            PhysicalDeviceCoverageReductionModeFeatures result = default(PhysicalDeviceCoverageReductionModeFeatures);

            result.CoverageReductionMode = pointer->CoverageReductionMode;
            return(result);
        }
Exemple #2
0
 /// <summary>
 ///
 /// </summary>
 /// <param name="pointer">
 /// </param>
 internal unsafe void MarshalTo(SharpVk.Interop.NVidia.PhysicalDeviceCoverageReductionModeFeatures *pointer)
 {
     pointer->SType = StructureType.PhysicalDeviceCoverageReductionModeFeatures;
     pointer->Next  = null;
     pointer->CoverageReductionMode = this.CoverageReductionMode;
 }