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

FrameBuffer32bpp() public method

Initializes a new instance of the FrameBuffer32bpp class.
public FrameBuffer32bpp ( 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 FrameBuffer32bpp(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;
        }