Added a bogus default device for testing.

This commit is contained in:
the_fiddler 2008-01-25 10:21:00 +00:00
parent 033a394c9d
commit f4beb31381

View file

@ -20,6 +20,12 @@ namespace OpenTK.Platform.X11
static X11XrandrDisplayDevice()
{
// Construct a default device for testing purposes.
new DisplayDevice(new DisplayResolution(800, 600, 24, 0), true,
new DisplayResolution[]
{
new DisplayResolution(800, 600, 24, 0)
});
}
public X11XrandrDisplayDevice()