mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-26 19:55:32 +00:00
46 lines
956 B
C#
46 lines
956 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 OpenTK.Graphics;
|
|
|
|
namespace OpenTK.Platform.X11
|
|
{
|
|
internal class X11XrandrDisplayDevice : IDisplayDeviceDriver
|
|
{
|
|
#region --- Constructors ---
|
|
|
|
static X11XrandrDisplayDevice()
|
|
{
|
|
}
|
|
|
|
public X11XrandrDisplayDevice()
|
|
{
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region --- IDisplayDeviceDriver Members ---
|
|
|
|
public bool TryChangeResolution(DisplayDevice device, DisplayResolution resolution)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
public void RestoreResolution(DisplayDevice device)
|
|
{
|
|
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|