Axiom.Graphics.BufferStream.BufferStream C# (CSharp) Method

BufferStream() private method

Constructor.
private BufferStream ( Axiom.Graphics.HardwareBuffer owner, IntPtr data ) : System
owner Axiom.Graphics.HardwareBuffer Reference to the hardware buffer who owns this stream.
data System.IntPtr Pointer to the raw data we will be writing to.
return System
		internal BufferStream( HardwareBuffer owner, IntPtr data )
		{
			this.data = data;
			this.owner = owner;
		}