Axiom.RenderSystems.OpenGL.GLFrameBufferObject.UnbindSurface C# (CSharp) Метод

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

Unbind attachment
public UnbindSurface ( int attachment ) : void
attachment int
Результат void
		public void UnbindSurface( int attachment )
		{
			//assert( attachment < OGRE_MAX_MULTIPLE_RENDER_TARGETS );
			_color[ attachment ].Buffer = null;
			// Re-initialise if buffer 0 still bound
			if ( _color[ 0 ].Buffer == null )
			{
				_initialize();
			}
		}