Opentk/Source/Examples/Tests/TestResolutionChanges.cs
the_fiddler 793744402e WinDisplayDevice is now multiple-monitor aware.
Added SelectResolution function to DisplayDevice.
Updated test to change settings on all available monitors.
2008-01-24 10:50:39 +00:00

36 lines
1.1 KiB
C#

#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());
// Switch to the first available resolution that has the same bpp as the current one (usually 640x480@60Hz)
dev.ChangeResolution(dev.SelectResolution(0, 0, dev.BitsPerPixel, 0));
MessageBox.Show(dev.ToString());
dev.RestoreResolution();
}
}
}
}