X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=main.cpp;h=fb67e0ea23ecb0e57456edfbb7dd8e55778bf0e4;hb=870d32ed4c8a9ccba8b2a76cad1c6c4d5958b23c;hp=dd94d7335cd80065a5290829404fc140fc7ffd69;hpb=e50b38a01429d41b6681db8675dc8b8f64a20c36;p=nageru diff --git a/main.cpp b/main.cpp index dd94d73..fb67e0e 100644 --- a/main.cpp +++ b/main.cpp @@ -5,13 +5,13 @@ extern "C" { #include #include #include -#include - +#include // IWYU pragma: keep #include #include #include #include #include +#include #include "context.h" #include "flags.h" @@ -21,13 +21,14 @@ extern "C" { int main(int argc, char *argv[]) { - parse_flags(argc, argv); + parse_flags(PROGRAM_NAGERU, argc, argv); if (global_flags.va_display.empty() || global_flags.va_display[0] != '/') { // We normally use EGL for zerocopy, but if we use VA against DRM // instead of against X11, we turn it off, and then don't need EGL. setenv("QT_XCB_GL_INTEGRATION", "xcb_egl", 0); + using_egl = true; } setlinebuf(stdout); av_register_all(); @@ -51,9 +52,13 @@ int main(int argc, char *argv[]) QGLFormat::setDefaultFormat(QGLFormat::fromSurfaceFormat(fmt)); global_share_widget = new QGLWidget(); + if (!global_share_widget->isValid()) { + fprintf(stderr, "Failed to initialize OpenGL. Nageru needs at least OpenGL 3.1 to function properly.\n"); + exit(1); + } MainWindow mainWindow; - mainWindow.resize(QSize(1500, 810)); + mainWindow.resize(QSize(1500, 850)); mainWindow.show(); app.installEventFilter(&mainWindow); // For white balance color picking.