/// <summary>
        ///
        /// </summary>
        /// <param name="pointer">
        /// </param>
        internal static unsafe PhysicalDeviceHostQueryResetFeatures MarshalFrom(SharpVk.Interop.PhysicalDeviceHostQueryResetFeatures *pointer)
        {
            PhysicalDeviceHostQueryResetFeatures result = default(PhysicalDeviceHostQueryResetFeatures);

            result.HostQueryReset = pointer->HostQueryReset;
            return(result);
        }
 /// <summary>
 ///
 /// </summary>
 /// <param name="pointer">
 /// </param>
 internal unsafe void MarshalTo(SharpVk.Interop.PhysicalDeviceHostQueryResetFeatures *pointer)
 {
     pointer->SType          = StructureType.PhysicalDeviceHostQueryResetFeaturesVersion;
     pointer->Next           = null;
     pointer->HostQueryReset = this.HostQueryReset;
 }