mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-02-02 11:21:00 +00:00
Added test for DisplayDevice.
This commit is contained in:
parent
70ad9b8714
commit
542fd0b2f7
33
Source/Examples/Tests/TestResolutionChanges.cs
Normal file
33
Source/Examples/Tests/TestResolutionChanges.cs
Normal 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();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue