mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-26 18:35:32 +00:00
39 lines
1.2 KiB
C#
39 lines
1.2 KiB
C#
// This code was written for the OpenTK library and has been released
|
|
// to the Public Domain.
|
|
// It is provided "as is" without express or implied warranty of any kind.
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using System.Windows.Forms;
|
|
using System.Diagnostics;
|
|
using System.Threading;
|
|
|
|
using OpenTK;
|
|
|
|
namespace Examples.Tests
|
|
{
|
|
[Example("Test Resolution Changes", ExampleCategory.OpenTK, "Test", Documentation="TestResolutionChanges")]
|
|
public class TestResolutionChanges
|
|
{
|
|
public static void Main()
|
|
{
|
|
for (int i = 0; i < 6; i++)
|
|
{
|
|
DisplayDevice dev = DisplayDevice.GetDisplay(DisplayIndex.First + i);
|
|
if (dev != null)
|
|
{
|
|
Trace.WriteLine(dev.ToString());
|
|
MessageBox.Show(dev.ToString());
|
|
dev.ChangeResolution(dev.SelectResolution(640, 480, 32, 60.0f));
|
|
Thread.Sleep(1000);
|
|
MessageBox.Show(dev.ToString());
|
|
dev.RestoreResolution();
|
|
Thread.Sleep(1000);
|
|
MessageBox.Show(dev.ToString());
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|