mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-27 22:25:28 +00:00
34 lines
905 B
C#
34 lines
905 B
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());
|
|||
|
//dev.ChangeResolution(640, 480, 32, 60.0f);
|
|||
|
//dev.RestoreResolution();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|