ADL.RenderSupport.shutdown C# (CSharp) Méthode

shutdown() public méthode

public shutdown ( ) : void
Résultat void
        public void shutdown()
        {
            foreach (KeyValuePair<int, WeakReference> entry in _activeRenderers)
            {
                if (entry.Value.IsAlive)
                {
                    ((ManualRenderer)entry.Value.Target).stop(false);
                }
            }
            _activeRenderers.Clear();
        }

Usage Example

Exemple #1
0
 internal void platformDisposed()
 {
     _platformHandle = IntPtr.Zero;
     _renderSupport.shutdown();
 }