2007-08-10 09:27:13 +00:00
|
|
|
#region --- License ---
|
|
|
|
/* Copyright (c) 2006, 2007 Stefanos Apostolopoulos
|
|
|
|
* See license.txt for license info
|
|
|
|
*/
|
|
|
|
#endregion
|
|
|
|
|
2007-07-23 00:15:18 +00:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.ComponentModel;
|
|
|
|
using System.Drawing;
|
|
|
|
using System.Text;
|
|
|
|
using System.Windows.Forms;
|
|
|
|
|
|
|
|
using OpenTK;
|
|
|
|
using OpenTK.Platform;
|
|
|
|
|
|
|
|
namespace Examples.Windowing
|
|
|
|
{
|
|
|
|
public partial class W01_DisplayModesForm : Form
|
|
|
|
{
|
|
|
|
OpenTK.Platform.IGLControl glWindow;
|
|
|
|
|
|
|
|
public W01_DisplayModesForm()
|
|
|
|
{
|
|
|
|
InitializeComponent();
|
|
|
|
|
|
|
|
glWindow = new GLControl();
|
|
|
|
|
|
|
|
IEnumerable<DisplayMode> modes = glWindow.Context.GetDisplayModes();
|
|
|
|
|
|
|
|
foreach (DisplayMode m in modes)
|
|
|
|
{
|
|
|
|
listBox1.Items.Add(m);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
2007-08-10 09:27:13 +00:00
|
|
|
}
|