Axiom.Media.PixelBox.SetConsecutive C# (CSharp) Method

SetConsecutive() public method

Set the rowPitch and slicePitch so that the buffer is laid out consecutive in memory.
public SetConsecutive ( ) : void
return void
		public void SetConsecutive()
		{
			rowPitch = Width;
			slicePitch = Width * Height;
		}