From f35e6e1e0741b7c511b4ca406ff2b2f519169fac Mon Sep 17 00:00:00 2001 From: the_fiddler Date: Fri, 25 Jan 2008 10:02:05 +0000 Subject: [PATCH] Added X11XrandrDisplayDevice.cs implementation. --- .../Platform/X11/X11XrandrDisplayDevice.cs | 45 +++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 Source/OpenTK/Platform/X11/X11XrandrDisplayDevice.cs diff --git a/Source/OpenTK/Platform/X11/X11XrandrDisplayDevice.cs b/Source/OpenTK/Platform/X11/X11XrandrDisplayDevice.cs new file mode 100644 index 00000000..37db0cc6 --- /dev/null +++ b/Source/OpenTK/Platform/X11/X11XrandrDisplayDevice.cs @@ -0,0 +1,45 @@ +#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) + { + + } + + public void RestoreResolution(DisplayDevice device) + { + + } + + #endregion + } +}