Axiom.RenderSystems.OpenGLES.GLESHardwarePixelBuffer.UnlockImpl C# (CSharp) Method

UnlockImpl() protected method

protected UnlockImpl ( ) : void
return void
		protected override void UnlockImpl()
		{
			if ( _currentLocking != BufferLocking.ReadOnly )
			{
				// From buffer to card, only upload if was locked for writing
				Upload( base.CurrentLock, new BasicBox( 0, 0, 0, Width, Height, Depth ) );
			}
			FreeBuffer();
		}