]> git.sesse.net Git - nageru/blobdiff - glwidget.cpp
Deal with a Movit change.
[nageru] / glwidget.cpp
index a309240e342dd45488d19ba959fb66c0701b205b..e9b97d53ac42d748eea0e88f7efe37786376115f 100644 (file)
@@ -10,7 +10,6 @@
 
 #include "glwidget.h"
 
-#include <movit/resource_pool.h>
 #include <stdio.h>
 #include <functional>
 #include <mutex>
@@ -33,8 +32,7 @@ class QWidget;
 using namespace std;
 
 GLWidget::GLWidget(QWidget *parent)
-    : QGLWidget(parent, global_share_widget),
-      resource_pool(new movit::ResourcePool)
+    : QGLWidget(parent, global_share_widget)
 {
 }
 
@@ -44,9 +42,6 @@ GLWidget::~GLWidget()
 
 void GLWidget::initializeGL()
 {
-       printf("egl context=%p\n", eglGetCurrentContext());
-       //printf("threads: %p %p\n", QThread::currentThread(), qGuiApp->thread());
-
        static std::once_flag flag;
        std::call_once(flag, [this]{
                global_mixer = new Mixer(QGLFormat::toSurfaceFormat(format()), global_flags.num_cards);