mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-26 04:05:36 +00:00
6bbaad8bfb
Made example source code visible for all examples in example browser. Updated Prebuild.exe to newest SVN version (resolves issues with resources). Added .rtf and .resx files to Examples project in Prebuild.xml.
170 lines
5.9 KiB
C#
170 lines
5.9 KiB
C#
#region --- License ---
|
|
/* Copyright (c) 2006, 2007 Stefanos Apostolopoulos
|
|
* See license.txt for license info
|
|
*/
|
|
#endregion
|
|
|
|
using System;
|
|
using System.Text;
|
|
using System.Threading;
|
|
using System.Runtime.InteropServices;
|
|
using System.Diagnostics;
|
|
using System.Windows.Forms;
|
|
using System.Security;
|
|
|
|
using OpenTK.Graphics.OpenGL;
|
|
using OpenTK.Graphics.OpenGL.Enums;
|
|
using OpenTK.Graphics;
|
|
|
|
namespace Examples.Tests
|
|
{
|
|
// This test is obsolete.
|
|
public class S01_Call_Performance
|
|
{
|
|
const int num_calls = 1000000;
|
|
float[] v = new float[] { 0.0f, 0.0f };
|
|
public static int dummy_variable = 0;
|
|
|
|
public void Launch()
|
|
{
|
|
using (OpenTK.GLControl control = new OpenTK.GLControl(GraphicsMode.Default))
|
|
{
|
|
Trace.WriteLine(String.Format("Number of calls: {0}", num_calls));
|
|
|
|
Stopwatch timer = new Stopwatch();
|
|
|
|
#region Managed functions
|
|
|
|
Trace.Write("Timing empty loop: ");
|
|
timer.Start();
|
|
for (int i = 0; ++i < num_calls; )
|
|
{
|
|
}
|
|
timer.Stop();
|
|
Trace.WriteLine(String.Format("{0} ns", timer.Elapsed.TotalMilliseconds * (1000000.0 / (double)num_calls)));
|
|
timer.Reset();
|
|
|
|
Trace.Write("Timing inline .Net functions: ");
|
|
timer.Start();
|
|
for (int i = 0; ++i < num_calls; )
|
|
{
|
|
InlineFunction();
|
|
}
|
|
timer.Stop();
|
|
Trace.WriteLine(String.Format("{0} ns", timer.Elapsed.TotalMilliseconds * (1000000.0 / (double)num_calls)));
|
|
timer.Reset();
|
|
|
|
Trace.Write("Timing virtual .Net functions: ");
|
|
timer.Start();
|
|
for (int i = 0; ++i < num_calls; )
|
|
{
|
|
VirtualFunction();
|
|
}
|
|
timer.Stop();
|
|
Trace.WriteLine(String.Format("{0} ns", timer.Elapsed.TotalMilliseconds * (1000000.0 / (double)num_calls)));
|
|
timer.Reset();
|
|
|
|
#endregion
|
|
|
|
#region OpenTK.Graphics.OpenGL
|
|
|
|
Trace.Write("Timing OpenTK.Graphics.OpenGL core functions: ");
|
|
timer.Start();
|
|
for (int i = 0; ++i < num_calls; )
|
|
{
|
|
GL.Vertex2(0.0f, 0.0f);
|
|
}
|
|
timer.Stop();
|
|
Trace.WriteLine(String.Format("{0} ns", timer.Elapsed.TotalMilliseconds * (1000000.0 / (double)num_calls)));
|
|
timer.Reset();
|
|
|
|
Trace.Write("Timing OpenTK.Graphics.OpenGL core functions (array): ");
|
|
timer.Start();
|
|
for (int i = 0; ++i < num_calls; )
|
|
{
|
|
GL.Vertex2(v);
|
|
}
|
|
timer.Stop();
|
|
Trace.WriteLine(String.Format("{0} ns", timer.Elapsed.TotalMilliseconds * (1000000.0 / (double)num_calls)));
|
|
timer.Reset();
|
|
|
|
Trace.Write("Timing OpenTK.Graphics.OpenGL core functions (void*): ");
|
|
timer.Start();
|
|
for (int i = 0; ++i < num_calls; )
|
|
GL.CallLists(v.Length, ListNameType.Float, v);
|
|
timer.Stop();
|
|
Trace.WriteLine(String.Format("{0} ns", timer.Elapsed.TotalMilliseconds * (1000000.0 / (double)num_calls)));
|
|
timer.Reset();
|
|
|
|
Trace.Write("Timing OpenTK.Graphics.OpenGL extension functions: ");
|
|
timer.Start();
|
|
for (int i = 0; ++i < num_calls; )
|
|
GL.ActiveTexture(TextureUnit.Texture0);
|
|
|
|
timer.Stop();
|
|
Trace.WriteLine(String.Format("{0} ns", timer.Elapsed.TotalMilliseconds * (1000000.0 / (double)num_calls)));
|
|
timer.Reset();
|
|
|
|
#endregion
|
|
|
|
#region DllImports
|
|
|
|
Trace.Write("Timing direct DllImport: ");
|
|
timer.Start();
|
|
for (int i = 0; ++i < num_calls; )
|
|
{
|
|
glVertex2f(0.0f, 0.0f);
|
|
}
|
|
timer.Stop();
|
|
Trace.WriteLine(String.Format("{0} ns", timer.Elapsed.TotalMilliseconds * (1000000.0 / (double)num_calls)));
|
|
timer.Reset();
|
|
|
|
Trace.Write("Timing direct DllImport (array): ");
|
|
timer.Start();
|
|
for (int i = 0; ++i < num_calls; )
|
|
{
|
|
glVertex2fv(v);
|
|
}
|
|
timer.Stop();
|
|
Trace.WriteLine(String.Format("{0} ns", timer.Elapsed.TotalMilliseconds * (1000000.0 / (double)num_calls)));
|
|
timer.Reset();
|
|
|
|
GL.GenLists(1);
|
|
Trace.Write("Timing direct DllImport (void*): ");
|
|
timer.Start();
|
|
for (int i = 0; ++i < num_calls; )
|
|
{
|
|
glCallLists(v.Length, ListNameType.Float, v);
|
|
}
|
|
timer.Stop();
|
|
Trace.WriteLine(String.Format("{0} ns", timer.Elapsed.TotalMilliseconds * (1000000.0 / (double)num_calls)));
|
|
timer.Reset();
|
|
|
|
#endregion
|
|
}
|
|
}
|
|
|
|
public static readonly int order = 1;
|
|
|
|
public void InlineFunction()
|
|
{
|
|
++dummy_variable;
|
|
}
|
|
|
|
public virtual void VirtualFunction()
|
|
{
|
|
++dummy_variable;
|
|
}
|
|
|
|
[DllImport("opengl32.dll", EntryPoint = "glVertex2f"), SuppressUnmanagedCodeSecurity]
|
|
extern static void glVertex2f(float a, float b);
|
|
|
|
[DllImport("opengl32.dll", EntryPoint = "glVertex2fv"), SuppressUnmanagedCodeSecurity]
|
|
extern static void glVertex2fv(float[] v);
|
|
|
|
[DllImport("opengl32.dll", EntryPoint = "glCallLists"), SuppressUnmanagedCodeSecurity]
|
|
extern static void glCallLists(int count, ListNameType type, object lists);
|
|
|
|
}
|
|
}
|