opengl: disable mutex

Shouldn't really need this anymore and it fixes a deadlock
This commit is contained in:
itsmattkc
2022-07-26 12:40:00 -07:00
parent 15a67bc12a
commit a09d2f41e9
+2 -2
View File
@@ -78,9 +78,9 @@ private:
#define PRINT_GL_ERRORS ErrorPrinter __e(__FUNCTION__, functions_)
#define GL_PREAMBLE \
QMutexLocker __l(&global_opengl_mutex);
//QMutexLocker __l(&global_opengl_mutex);
QMutex global_opengl_mutex;
//QMutex global_opengl_mutex;
OpenGLRenderer::OpenGLRenderer(QObject* parent) :
Renderer(parent),