Axiom.Graphics.Technique.Preload C# (CSharp) Метод

Preload() публичный Метод

Preloads resources required by this Technique. This is the portion that is safe to do from a thread other than the main render thread.
public Preload ( ) : void
Результат void
		public void Preload()
		{
			Debug.Assert( _isSupported, "This technique is not supported." );

			// load each pass
			for ( int i = 0; i < _passes.Count; i++ )
			{
				( (Pass)_passes[ i ] ).Load();
			}
		}