Axiom.Graphics.ShadowVolumeExtrudeProgram.Shutdown C# (CSharp) Method

Shutdown() public static method

Called on engine shutdown; destroys all auto created gpu programs.
public static Shutdown ( ) : void
return void
		public static void Shutdown()
		{
			if ( isInitialized )
			{
				// destroy shadow volume extruders
				foreach ( string programName in programNames )
				{
					// TODO: Toast the programs
					//GpuProgramManager.Instance.Remove(programName);
				}

				isInitialized = false;
			}
		}