Mosa.DeviceSystem.FrameBuffer24bpp.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.Write24(GetOffset(x, y), (ushort)color);
        }