using System.Drawing;
namespace Dashboard.Windowing
{
///
/// Generic interface for the rendering system present in a
///
public interface IDeviceContext
{
///
/// The swap group for this device context.
///
ISwapGroup SwapGroup { get; }
///
/// The size of the window framebuffer in pixels.
///
Size FramebufferSize { get; }
}
}