2008-01-25 10:02:05 +00: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;
|
|
|
|
|
|
|
|
|
|
using OpenTK.Graphics;
|
2008-01-25 13:13:05 +00:00
|
|
|
|
using System.Diagnostics;
|
2008-01-25 10:02:05 +00:00
|
|
|
|
|
|
|
|
|
namespace OpenTK.Platform.X11
|
|
|
|
|
{
|
|
|
|
|
internal class X11XrandrDisplayDevice : IDisplayDeviceDriver
|
|
|
|
|
{
|
2008-01-25 13:13:05 +00:00
|
|
|
|
static object display_lock = new object();
|
|
|
|
|
|
2008-01-25 10:02:05 +00:00
|
|
|
|
#region --- Constructors ---
|
|
|
|
|
|
|
|
|
|
static X11XrandrDisplayDevice()
|
|
|
|
|
{
|
2008-01-25 14:32:51 +00:00
|
|
|
|
// Get available resolutions. Then, for each resolution get all
|
|
|
|
|
// available rates.
|
|
|
|
|
// TODO: Find a way to get all available depths, too.
|
2008-01-25 15:04:10 +00:00
|
|
|
|
// TODO: Global X11 lock.
|
|
|
|
|
for (int screen = 0; screen < API.ScreenCount; screen++)
|
|
|
|
|
{
|
|
|
|
|
List<DisplayResolution> available_res;
|
|
|
|
|
float refreshRate;
|
|
|
|
|
FindAvailableResolutions(screen, out available_res);
|
|
|
|
|
FindCurrentRefreshRate(screen, out refreshRate);
|
|
|
|
|
// The default resolution (but not refresh rate) is the first one in available_res.
|
|
|
|
|
// Its refresh rate is discovered by the FindCurrentRefreshRate call.
|
|
|
|
|
new DisplayDevice(new DisplayResolution(available_res[0].Width, available_res[0].Height, 24, refreshRate),
|
|
|
|
|
screen == API.DefaultScreen, available_res);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
internal X11XrandrDisplayDevice() { }
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#region --- Private Methods ---
|
2008-01-25 14:32:51 +00:00
|
|
|
|
|
2008-01-25 15:04:10 +00:00
|
|
|
|
#region static void FindAvailableResolutions(int screen, out List<DisplayResolution> resolutions)
|
|
|
|
|
|
|
|
|
|
static void FindAvailableResolutions(int screen, out List<DisplayResolution> resolutions)
|
|
|
|
|
{
|
|
|
|
|
resolutions = new List<DisplayResolution>();
|
|
|
|
|
unsafe
|
2008-01-25 13:13:05 +00:00
|
|
|
|
{
|
2008-01-25 15:04:10 +00:00
|
|
|
|
XRRScreenSize[] array = Functions.XRRSizes(API.DefaultDisplay, screen);
|
|
|
|
|
if (array == null)
|
|
|
|
|
throw new NotSupportedException("XRandR extensions not available.");
|
|
|
|
|
|
|
|
|
|
int resolution = 0;
|
|
|
|
|
foreach (XRRScreenSize size in array)
|
2008-01-25 13:13:05 +00:00
|
|
|
|
{
|
2008-01-25 15:04:10 +00:00
|
|
|
|
short[] rates = Functions.XRRRates(API.DefaultDisplay, screen, resolution);
|
|
|
|
|
|
|
|
|
|
// TODO: Is the rate != 0 conditional correct? It seems that XRRRates returns 0
|
|
|
|
|
// for modes that are larger than the screen can support (?)
|
|
|
|
|
foreach (short rate in rates)
|
|
|
|
|
if (rate != 0)
|
|
|
|
|
resolutions.Add(new DisplayResolution(size.Width, size.Height, 24, (float)rate));
|
|
|
|
|
++resolution;
|
2008-01-25 13:13:05 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2008-01-25 10:02:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
2008-01-25 15:04:10 +00:00
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
static void FindCurrentRefreshRate(int screen, out float refreshRate)
|
2008-01-25 10:02:05 +00:00
|
|
|
|
{
|
2008-01-25 15:04:10 +00:00
|
|
|
|
IntPtr screen_config_ptr = Functions.XRRGetScreenInfo(API.DefaultDisplay, API.RootWindow);
|
|
|
|
|
ushort rotation = 0;
|
|
|
|
|
int size = Functions.XRRConfigCurrentConfiguration(screen_config_ptr, ref rotation);
|
|
|
|
|
short rate = Functions.XRRConfigCurrentRate(screen_config_ptr);
|
|
|
|
|
Functions.XRRFreeScreenConfigInfo(screen_config_ptr);
|
|
|
|
|
|
|
|
|
|
refreshRate = (float)rate;
|
2008-01-25 10:02:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#region --- IDisplayDeviceDriver Members ---
|
|
|
|
|
|
|
|
|
|
public bool TryChangeResolution(DisplayDevice device, DisplayResolution resolution)
|
|
|
|
|
{
|
2008-01-25 10:03:13 +00:00
|
|
|
|
return false;
|
2008-01-25 10:02:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void RestoreResolution(DisplayDevice device)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
}
|
|
|
|
|
}
|