CSharpGL.NullImageFiller.NullImageFiller C# (CSharp) Method

NullImageFiller() public method

build texture's content with IntPtr.Zero.
public NullImageFiller ( int width, int height, uint internalFormat, uint format, uint type ) : System
width int
height int
internalFormat uint
format uint
type uint
return System
        public NullImageFiller(int width, int height, uint internalFormat, uint format, uint type)
        {
            this.width = width;
            this.height = height;
            this.internalFormat = internalFormat;
            this.format = format;
            this.type = type;
        }