C# Class Mosa.DeviceSystem.FrameBuffer

Inheritance: IFrameBuffer
Show file Open project: tgiphil/MOSA-Project

Protected Properties

Property Type Description
depth uint
height uint
memory IMemory
offset uint
width uint

Public Methods

Method Description
GetPixel ( uint x, uint y ) : uint

Gets the pixel.

SetPixel ( uint color, uint x, uint y ) : void

Sets the pixel.

Protected Methods

Method Description
GetOffset ( uint x, uint y ) : uint

Gets the offset.

Method Details

GetOffset() protected abstract method

Gets the offset.
protected abstract GetOffset ( uint x, uint y ) : uint
x uint The x.
y uint The y.
return uint

GetPixel() public abstract method

Gets the pixel.
public abstract GetPixel ( uint x, uint y ) : uint
x uint The x.
y uint The y.
return uint

SetPixel() public abstract method

Sets the pixel.
public abstract SetPixel ( uint color, uint x, uint y ) : void
color uint
x uint The x.
y uint The y.
return void

Property Details

depth protected property

protected uint depth
return uint

height protected property

protected uint height
return uint

memory protected property

protected IMemory memory
return IMemory

offset protected property

protected uint offset
return uint

width protected property

protected uint width
return uint