CSharpGL.ByteImageFiller.ByteImageFiller C# (CSharp) Method

ByteImageFiller() public method

build texture's content with Bitmap.
public ByteImageFiller ( byte content, int width )
content byte
width int
        public ByteImageFiller(byte[] content, int width)
        {
            this.content = content;
            this.width = width;
        }