Axiom.RenderSystems.OpenGL.GLPBRTTManager.Unbind C# (CSharp) Метод

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

public Unbind ( RenderTarget target ) : void
target Axiom.Graphics.RenderTarget
Результат void
		public override void Unbind( RenderTarget target )
		{
			// copy on unbind
			object attr = target.GetCustomAttribute( "target" );
			if ( attr != null )
			{
				GLSurfaceDesc surface = (GLSurfaceDesc)attr;
				if ( surface.Buffer != null )
					( (GLTextureBuffer)surface.Buffer ).CopyFromFrameBuffer( surface.ZOffset );
			}
		}