Exemple #1
0
        /// <summary>
        ///
        /// </summary>
        internal static unsafe PhysicalDeviceCoherentMemoryFeatures MarshalFrom(SharpVk.Interop.Amd.PhysicalDeviceCoherentMemoryFeatures *pointer)
        {
            PhysicalDeviceCoherentMemoryFeatures result = default(PhysicalDeviceCoherentMemoryFeatures);

            result.DeviceCoherentMemory = pointer->DeviceCoherentMemory;
            return(result);
        }
Exemple #2
0
 /// <summary>
 ///
 /// </summary>
 internal unsafe void MarshalTo(SharpVk.Interop.Amd.PhysicalDeviceCoherentMemoryFeatures *pointer)
 {
     pointer->SType = StructureType.PhysicalDeviceCoherentMemoryFeatures;
     pointer->Next  = null;
     pointer->DeviceCoherentMemory = this.DeviceCoherentMemory;
 }