2009-02-22 11:43:35 +01:00
|
|
|
|
#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;
|
|
|
|
|
|
2009-08-14 15:13:28 +02:00
|
|
|
|
namespace OpenTK.Platform
|
2009-02-22 11:43:35 +01:00
|
|
|
|
{
|
|
|
|
|
internal interface IDisplayDeviceDriver
|
|
|
|
|
{
|
|
|
|
|
bool TryChangeResolution(DisplayDevice device, DisplayResolution resolution);
|
|
|
|
|
bool TryRestoreResolution(DisplayDevice device);
|
|
|
|
|
}
|
|
|
|
|
}
|