Updated RectTextrue.cs, VertexInformation.cs, and IDrawable.cs to properly pass indice information.
20 lines
358 B
C#
20 lines
358 B
C#
using NUnit.Framework;
|
|
using RecrownedGTK.Graphics.Render.Shaders;
|
|
namespace RecrownedGTK.Tests
|
|
{
|
|
[TestFixture]
|
|
public class ShaderTest
|
|
{
|
|
Shader currentShader;
|
|
|
|
public void Setup()
|
|
{
|
|
}
|
|
|
|
[Test]
|
|
public void Test()
|
|
{
|
|
Assert.DoesNotThrow(Shader.CreateBasicShader);
|
|
}
|
|
}
|
|
} |