General progress on getting OpenGL based rendering.
This commit is contained in:
@@ -7,6 +7,8 @@
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFramework>netcoreapp3.1</TargetFramework>
|
||||
<AssemblyVersion>1.0.0.0</AssemblyVersion>
|
||||
<Description>A tool to help with developing a game using SlatedGameToolkit.</Description>
|
||||
</PropertyGroup>
|
||||
|
||||
</Project>
|
||||
|
@@ -1,6 +1,6 @@
|
||||
using System;
|
||||
using SlatedGameToolkit.Framework.Graphics.OpenGL.Programs;
|
||||
using SlatedGameToolkit.Framework.Graphics.OpenGL.Shaders;
|
||||
using SlatedGameToolkit.Framework.Graphics.Programs;
|
||||
using SlatedGameToolkit.Framework.Graphics.Shaders;
|
||||
using SlatedGameToolkit.Framework.Graphics.Window;
|
||||
using SlatedGameToolkit.Framework.StateSystem;
|
||||
using SlatedGameToolkit.Framework.StateSystem.States;
|
||||
@@ -10,7 +10,6 @@ namespace SlatedGameToolkit.Tools.Utilities.GraphicalPlayground
|
||||
public class MainState : IState
|
||||
{
|
||||
private WindowContext window;
|
||||
private GLShaderProgram shader;
|
||||
|
||||
public WindowContext CurrentWindow { get { return window;}}
|
||||
|
||||
@@ -37,7 +36,6 @@ namespace SlatedGameToolkit.Tools.Utilities.GraphicalPlayground
|
||||
public void Initialize(Manager manager)
|
||||
{
|
||||
window = new WindowContext("SlatedGameToolkit Playground");
|
||||
shader = new GLShaderProgram();
|
||||
window.RaiseToTop();
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user