Axiom.RenderSystems.OpenGL.GLSL.GLSLProgram.UnloadImpl C# (CSharp) 메소드

UnloadImpl() 보호된 메소드

protected UnloadImpl ( ) : void
리턴 void
		protected override void UnloadImpl()
		{
            // just clearing the reference here
            assemblerProgram = null;

			if ( IsSupported )
			{
				// only delete it if it was supported to being with, else it won't exist
                Gl.glDeleteObjectARB(GLHandle);
			}
		}