]> git.sesse.net Git - nageru/blobdiff - glwidget.cpp
Make side-by-side handle other inputs than 1280x720.
[nageru] / glwidget.cpp
index f96484469008d4b63728d866709269dda2fd227d..06675f346c85211030d0712097aa0db138b1fef6 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)
 {
 }
 
@@ -53,6 +51,7 @@ void GLWidget::initializeGL()
        global_mixer->set_frame_ready_callback(output, [this]{
                QMetaObject::invokeMethod(this, "update", Qt::AutoConnection);
                emit transition_names_updated(global_mixer->get_transition_names());
+               emit resolution_updated(output);
        });
 
        glDisable(GL_BLEND);