2ffd05e2cb
The content of this branch was automatically imported from Fedora ELN with the following as its source: https://src.fedoraproject.org/rpms/qt5-qtbase#9d109333a34e8b362f4f72f82797457ee9119230
15 lines
381 B
Bash
Executable File
15 lines
381 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ -z "$QT_XCB_FORCE_SOFTWARE_OPENGL" ]; then
|
|
|
|
QT5_CHECK_OPENGL_VERSION=`LANG=C glxinfo 2> /dev/null | grep '^OpenGL version string: ' | head -n 1 | sed -e 's/^OpenGL version string: \([0-9]\).*$/\1/g'` ||:
|
|
|
|
if [ "$QT5_CHECK_OPENGL_VERSION" == "1" ]; then
|
|
QT_XCB_FORCE_SOFTWARE_OPENGL=1
|
|
export QT_XCB_FORCE_SOFTWARE_OPENGL
|
|
fi
|
|
|
|
unset QT5_CHECK_OPENGL_VERSION
|
|
|
|
fi
|