/// <summary>
        ///
        /// </summary>
        internal static unsafe PhysicalDevicePresentationProperties MarshalFrom(SharpVk.Interop.Android.PhysicalDevicePresentationProperties *pointer)
        {
            PhysicalDevicePresentationProperties result = default(PhysicalDevicePresentationProperties);

            result.SharedImage = pointer->SharedImage;
            return(result);
        }
 /// <summary>
 ///
 /// </summary>
 internal unsafe void MarshalTo(SharpVk.Interop.Android.PhysicalDevicePresentationProperties *pointer)
 {
     pointer->SType       = StructureType.PhysicalDevicePresentationProperties;
     pointer->Next        = null;
     pointer->SharedImage = this.SharedImage;
 }