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

SetPixel() public method

Sets the pixel.
public SetPixel ( uint color, uint x, uint y ) : void
color uint The color.
x uint The x.
y uint The y.
return void
        public override void SetPixel(uint color, uint x, uint y)
        {
            memory.Write32(GetOffset(x, y), color);
        }