began graphics backend enum

This commit is contained in:
itsmattkc
2020-10-29 02:59:18 +11:00
parent a3a57181a6
commit 84a1ec0ca3
+8
View File
@@ -37,6 +37,14 @@ class RenderManager : public ThreadPool
{
Q_OBJECT
public:
enum Backend {
/// Graphics acceleration provided by OpenGL
kOpenGL,
/// No graphics rendering - used to test core threading logic
kDummy
};
static void CreateInstance()
{
instance_ = new RenderManager();