Pinta.ImageManipulation.ColorBgraArrayWrapper.ColorBgraArrayWrapper C# (CSharp) Method

ColorBgraArrayWrapper() public method

public ColorBgraArrayWrapper ( ColorBgra data, int width, int height ) : System
data ColorBgra
width int
height int
return System
		public unsafe ColorBgraArrayWrapper (ColorBgra* data, int width, int height)
		{
			data_ptr = data;
			this.height = height;
			this.width = width;
		}