Added a bogus default device for testing.

This commit is contained in:
the_fiddler 2008-01-25 10:21:00 +00:00
parent 8630edaaf6
commit 605f04bf3d

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()