Mosa.DeviceSystem.FrameBuffer24bpp.FrameBuffer24bpp C# (CSharp) Method

FrameBuffer24bpp() public method

Initializes a new instance of the FrameBuffer24bpp class.
public FrameBuffer24bpp ( IMemory memory, uint width, uint height, uint offset, uint depth ) : Mosa.HardwareSystem
memory IMemory The memory.
width uint The width.
height uint The height.
offset uint The offset.
depth uint The depth.
return Mosa.HardwareSystem
        public FrameBuffer24bpp(IMemory memory, uint width, uint height, uint offset, uint depth)
        {
            this.memory = memory;
            this.width = width;
            this.height = height;
            this.offset = offset;
            this.depth = depth;
        }