mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-24 01:25:31 +00:00
Correct class names.
This commit is contained in:
parent
1c1f5a8d98
commit
0328e31356
|
@ -18,13 +18,13 @@ namespace Examples.Tutorial
|
|||
/// <summary>
|
||||
/// Demonstrates Vertex Arrays (in system memory). Example is incomplete (documentation).
|
||||
/// </summary>
|
||||
class T02_Vertex_Array_Cube : GameWindow, IExample
|
||||
class T02_Vertex_Arrays : GameWindow, IExample
|
||||
{
|
||||
float angle;
|
||||
|
||||
#region Constructor
|
||||
|
||||
public T02_Vertex_Array_Cube()
|
||||
public T02_Vertex_Arrays()
|
||||
{
|
||||
this.CreateWindow(new DisplayMode(800, 600));
|
||||
}
|
||||
|
|
|
@ -18,14 +18,14 @@ namespace Examples.Tutorial
|
|||
/// <summary>
|
||||
/// Demonstrates fixed-function OpenGL lighting. Example is incomplete (documentation).
|
||||
/// </summary>
|
||||
class T04_Lit_Cube : GameWindow, IExample
|
||||
class T04_Vertex_Lighting : GameWindow, IExample
|
||||
{
|
||||
float x_angle, zoom;
|
||||
Shape shape = new Plane(16, 16, 4.0f, 4.0f);
|
||||
|
||||
#region Constructor
|
||||
|
||||
public T04_Lit_Cube()
|
||||
public T04_Vertex_Lighting()
|
||||
{
|
||||
this.CreateWindow(new DisplayMode(800, 600), "OpenTK | Vertex Lighting example");
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue