Axiom.RenderSystems.OpenGLES.GLESTextureManager.dispose C# (CSharp) Method

dispose() protected method

protected dispose ( bool disposeManagedResources ) : void
disposeManagedResources bool
return void
		protected override void dispose( bool disposeManagedResources )
		{
			// Unregister with group manager
			ResourceGroupManager.Instance.UnregisterResourceManager( base.ResourceType );
			// Delete warning texture
			OpenGL.DeleteTextures( 1, ref _warningTextureID );
			GLESConfig.GlCheckError( this );

			base.dispose( disposeManagedResources );
		}