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

GetPixel() public method

Gets the pixel.
public GetPixel ( uint x, uint y ) : uint
x uint The x.
y uint The y.
return uint
        public override uint GetPixel(uint x, uint y)
        {
            return memory.Read32(GetOffset(x, y));
        }