Axiom.RenderSystems.OpenGL.GLHardwarePixelBuffer.GLHardwarePixelBuffer C# (CSharp) Method

GLHardwarePixelBuffer() public method

public GLHardwarePixelBuffer ( int width, int height, int depth, PixelFormat format, BufferUsage usage ) : System
width int
height int
depth int
format PixelFormat
usage BufferUsage
return System
		public GLHardwarePixelBuffer( int width, int height, int depth, PixelFormat format, BufferUsage usage )
			: base( width, height, depth, format, usage, false, false )
		{
			buffer = new PixelBox( width, height, depth, format );
			GLFormat = Gl.GL_NONE;
		}