Progress on adding GL shader system.

This commit is contained in:
2020-05-28 13:51:44 -05:00
parent 93937a8b34
commit d269760c80
13 changed files with 212 additions and 33 deletions

View File

@@ -0,0 +1,17 @@
using System;
namespace SlatedGameToolkit.Framework.Exceptions
{
public class OpenGLException : Exception {
public OpenGLException() : base() {
}
public OpenGLException(string message) : base(message) {
}
public OpenGLException(string message, Exception inner) : base(message, inner) {
}
}
}