e828f75962
* Fri Aug 07 2015 Kevin Kofler <Kevin@tigcc.ticalc.org> - 5.5.0-14 - remove GDB hackery again, -12 built fine on i686, hack breaks ARM build - fix 10-qt5-check-opengl2.sh for multiple screens (#1245755)
7 lines
254 B
Bash
Executable File
7 lines
254 B
Bash
Executable File
#!/bin/sh
|
|
OPENGL_VERSION=`LANG=C glxinfo | grep '^OpenGL version string: ' | head -n 1 | sed -e 's/^OpenGL version string: \([0-9]\).*$/\1/g'`
|
|
if [ "$OPENGL_VERSION" -lt 2 ]; then
|
|
QT_XCB_FORCE_SOFTWARE_OPENGL=1
|
|
export QT_XCB_FORCE_SOFTWARE_OPENGL
|
|
fi
|