Opentk/Source/Examples/OpenTK/Test/Multithreading.cs
thefiddler 8dcb8601a2 Normalized line endings
Hopefully this is the first and last time we have to do this.
2013-10-11 01:58:54 +02:00

57 lines
1.7 KiB
C#

// This code was written for the OpenTK library and has been released
// to the Public Domain.
// It is provided "as is" without express or implied warranty of any kind.
using System;
using System.Collections.Generic;
using System.Text;
using System.Threading;
namespace Examples.Tests
{
[Example("Multithreading Test", ExampleCategory.OpenTK, "Test")]
class Multithreading
{
public static void Main()
{
const int ThreadCount = 2;
List<Thread> threads = new List<Thread>();
// launch threads
for (int i = 0; i < ThreadCount; i++)
{
Thread t = new Thread(RunGame);
t.IsBackground = true;
t.Priority = ThreadPriority.BelowNormal;
t.Start();
threads.Add(t);
}
// wait for exit
foreach (Thread t in threads)
{
t.Join();
}
}
static void RunGame()
{
using (Tutorial.T03_Immediate_Mode_Cube game = new Examples.Tutorial.T03_Immediate_Mode_Cube())
{
Utilities.SetWindowTitle(game);
game.Keyboard.KeyUp += delegate(object sender, OpenTK.Input.KeyboardKeyEventArgs e)
{
if (e.Key == OpenTK.Input.Key.F11)
{
if (game.WindowState == OpenTK.WindowState.Fullscreen)
game.WindowState = OpenTK.WindowState.Normal;
else
game.WindowState = OpenTK.WindowState.Fullscreen;
}
};
game.Run(30.0);
}
}
}
}