Skip to content

Commit

Permalink
Follow rename of Aurora QPA plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
plfiorini committed Aug 2, 2023
1 parent 2dba6a8 commit 6a9719e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/compositor/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ int main(int argc, char *argv[])
#if QT_VERSION >= QT_VERSION_CHECK(5, 11, 0)
// Since Qt 5.11.0 we can specify a fallback platform plugin,
// so try wayland and xcb in this order unless it's running on a vt
qputenv("QT_QPA_PLATFORM", "wayland;xcb;liri");
qputenv("QT_QPA_PLATFORM", "wayland;xcb;aurora-eglfs");
#else
// Try to detect the platform based on environment variables,
// fallback to liri if nothing is found
Expand All @@ -118,7 +118,7 @@ int main(int argc, char *argv[])
else if (qEnvironmentVariableIsSet("DISPLAY"))
qputenv("QT_QPA_PLATFORM", QByteArrayLiteral("xcb"));
else
qputenv("QT_QPA_PLATFORM", QByteArrayLiteral("liri"));
qputenv("QT_QPA_PLATFORM", QByteArrayLiteral("aurora-eglfs"));
#endif

// ShareOpenGLContexts is needed for using the threaded renderer
Expand Down

0 comments on commit 6a9719e

Please sign in to comment.