-1

我正在编写一个带有 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 集成?

如果在树莓派上既不能进行 EGL 也不能进行 GLX 集成,我该怎么做才能在 pi 上运行我的应用程序?

4

1 回答 1

1

你需要一个 Raspberry Pi 2。你必须为它重新编译 Qt 库。

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

还没有在树莓派上构建库,但是我已经完成了 Qt 库的交叉编译。它需要一个 raspberry 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 中安装了正确的东西,它将正确检测和配置。

于 2016-01-29T10:17:20.747 回答