raspberry pi 上的 Qt OpenGl 上下文

Qt OpenGl context on raspberry pi

我正在编写一个带有 Qt5 opengl 上下文的程序。它在我的桌面(fedora 23)上运行良好。但是我必须在 pi 2 上 运行 它。所以我在每个地方下载 Qt5 源代码并在 pi 上本地编译它。当我尝试编译 运行 我在 pi 上的程序时,它抛出以下错误:

QXcbIntegration: Cannot create platform OpenGL context, neither GLX nor EGL are enabled

我在 Qt 论坛上看到 Raspberry pi XCB 无论如何都无法与 egl 集成。此外,当我配置 Qt 源代码时,EGL on x 选项为否。但是启用了 GLX。无论如何设置 QXcbIntegration 以在 pi 上使用 GLX?

我正在尝试修复 XCB 和 egl 集成。所以我尝试在qtbase的config.tests/qpa目录中重新编译egl-x11测试以查看错误。输出为:

g++ -c -pipe -O2 -Wall -W -fPIC  -I. -isystem /usr/include/libdrm -I../../../mkspecs/linux-g++ -o egl-x11.o egl-x11.cpp
egl-x11.cpp: In function ‘int main(int, char**)’:
egl-x11.cpp:47:20: error: invalid conversion from ‘EGLNativeDisplayType {aka void*}’ to ‘Display* {aka _XDisplay*}’ [-fpermissive]
egl-x11.cpp:49:11: error: invalid conversion from ‘EGLNativeDisplayType {aka void*}’ to ‘Display* {aka _XDisplay*}’ [-fpermissive]
egl-x11.cpp:50:79: error: invalid conversion from ‘Window {aka long unsigned int}’ to ‘EGLNativeWindowType {aka void*}’ [-fpermissive]
egl-x11.cpp:51:26: error: invalid conversion from ‘EGLNativeWindowType {aka void*}’ to ‘Window {aka long unsigned int}’ [-fpermissive]
/usr/include/X11/Xlib.h:2251:12: error:   initializing argument 2 of ‘int XDestroyWindow(Display*, Window)’ [-fpermissive]
Makefile:530: recipe for target 'egl-x11.o' failed
make: *** [egl-x11.o] Error 1

有什么方法可以修复 XCB 和 EGL 集成吗?

如果在 raspberry pi 上既不能集成 EGL 也不能集成 GLX,我可以如何处理 运行 我在 pi 上的应用程序?

您需要 Raspberry Pi 2。并且您必须为其重新编译 Qt 库。

它将 运行 使用使用 EGL 的 Qt EGLFS 平台集成。这意味着一个全屏 Qt 应用程序,没有桌面环境。

没有在raspberry上构建库,但是我已经完成了Qt库的交叉编译。它需要一个覆盆子 sysroot 来针对它配置 Qt:

./configure -opengl es2 -device linux-rasp-pi2-g++ -sysroot "$R" -opensource -confirm-license -optimized-qmake -reduce-exports -release -make libs -make tools ... <lots of other options>

如果在 sysroot 中安装了正确的东西,它将正确检测和配置。