Axiom.RenderSystems.Xna.XnaHardwareVertexBuffer.UnlockImpl C# (CSharp) Метод

UnlockImpl() защищенный Метод

protected UnlockImpl ( ) : void
Результат void
		protected override void UnlockImpl()
		{
			//there is no unlock/lock system on XNA, just copy the byte buffer into the video card memory
			// _buffer.SetData<byte>(bufferBytes);
			//this is faster :)
			_buffer.SetData<byte>( _offset, _bufferBytes, _offset, _length, 0 );
		}