ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
Edit /usr/include/qt4/QtOpenGL/qgl.h
and change typedef GLfloat GLdouble;
to typedef double GLdouble;
2 | No.2 Revision |
Edit /usr/include/qt4/QtOpenGL/qgl.h
and change typedef GLfloat GLdouble;
to typedef double GLdouble;
in both GLES and GLES2 lib imports
3 | No.3 Revision |
Edit /usr/include/qt4/QtOpenGL/qgl.h
and change typedef GLfloat GLdouble;
to typedef double GLdouble;
in both GLES and GLES2 lib importsimports. It's cause in ARM architecture, QT considers GLFloat as a float, instead of a double. So the typedefs crash.
4 | No.4 Revision |
Edit /usr/include/qt4/QtOpenGL/qgl.h
and change typedef GLfloat GLdouble;
to typedef double GLdouble;
in both GLES and GLES2 lib imports. It's cause in ARM architecture, QT considers GLFloat as a float, instead of a double. So the typedefs crash.
By the way, I recommend using a Odroid 13.04 image, since a source install of Hydro wil give you some problems. 13.04 comes with apt-get packages that are stable.
5 | No.5 Revision |
Edit /usr/include/qt4/QtOpenGL/qgl.h
and change typedef GLfloat GLdouble;
to typedef double GLdouble;
in both GLES and GLES2 lib imports. It's cause in ARM architecture, QT considers GLFloat GLdouble as a float, instead of a double. So the typedefs crash.
By the way, I recommend using a Odroid 13.04 image, since a source install of Hydro wil give you some problems. 13.04 comes with apt-get packages that are stable.
6 | No.6 Revision |
Edit /usr/include/qt4/QtOpenGL/qgl.h
and change typedef GLfloat GLdouble;
to typedef double GLdouble;
in both GLES and GLES2 lib imports. It's cause in ARM architecture, QT considers GLdouble as a float, instead of a double. So the typedefs crash.
By the way, I recommend using a Odroid 13.04 image, since a source install of Hydro wil give you some problems. 13.04 comes with apt-get Debian packages that are stable.