Added test for DisplayDevice.

This commit is contained in:
the_fiddler 2008-01-24 09:25:43 +00:00
parent 70ad9b8714
commit 542fd0b2f7

View file

@ -0,0 +1,33 @@
#region --- License ---
/* Licensed under the MIT/X11 license.
* Copyright (c) 2006-2008 the OpenTK team.
* This notice may not be removed.
* See license.txt for licensing detailed licensing details.
*/
#endregion
using System;
using System.Collections.Generic;
using System.Text;
using System.Windows.Forms;
using System.Diagnostics;
using OpenTK.Graphics;
namespace Examples.Tests
{
[Example("Test Resolution Changes", ExampleCategory.Test)]
public class TestResolutionChanges
{
public static void Main()
{
foreach (DisplayDevice dev in DisplayDevice.AvailableDisplays)
{
Trace.WriteLine(dev.ToString());
//MessageBox.Show(dev.ToString());
//dev.ChangeResolution(640, 480, 32, 60.0f);
//dev.RestoreResolution();
}
}
}
}