Axiom.RenderSystems.OpenGLES.GLESRenderSystem.Shutdown C# (CSharp) Method

Shutdown() public method

public Shutdown ( ) : void
return void
		public override void Shutdown()
		{
			base.Shutdown();

			_gpuProgramManager.Dispose();
			_gpuProgramManager = null;

			hardwareBufferManager.Dispose();
			hardwareBufferManager = null;

			//_rttManager.Dispose();
			_rttManager = null;

			_glSupport.Stop();

			textureManager.Dispose();
			textureManager = null;

			_glInitialized = false;
		}
GLESRenderSystem