Details
-
Bug
-
Resolution: Unresolved
-
P2: Important
-
None
-
5.4.0
-
None
-
I have experimented with OpenSUSE 13.1 and 12.3 with the same a problems.
I have attached the output from glxinfo on my OpenSUSE 13 machine with my display exported.
Description
I have been exploring using the new OpenGL framework and I have discovered that when I export my display from an external computer to my own display the Qt applications either crash or do not activate the opengl context.
For example if I use the hellogl2 example application it will report the following when I have my display exported.
QOpenGLShader::compile(Vertex): failed
QOpenGLShader::compile(Fragment): failed
QOpenGLShaderProgram::uniformLocation( projMatrix ): shader program is not linked
QOpenGLShaderProgram::uniformLocation( mvMatrix ): shader program is not linked
QOpenGLShaderProgram::uniformLocation( normalMatrix ): shader program is not linked
QOpenGLShaderProgram::uniformLocation( lightPos ): shader program is not linked
QOpenGLShader::compile(Vertex): failed
QOpenGLShader::compile(Fragment): failed
bool QOpenGLTextureBlitter::create() Could not link shader program:
""
Segmentation fault
Which seems to indicate that there is a problem with compiling the shaders.
If I run the legacy example application hellogl the application works as expected. I believe that the hellogl application does not use shaders and this is the likely reason for the difference.... assuming that exporting the opengl context does not support shaders.
But upon closer inspection I do not think that this is the case because I can use a simple GLUT application that has shaders and that application works fine. I will attach the simple application to this issue if someone is interested.
I have explored what the difference might be between the GLUT application and the Qt application and it appears to be that the glut application uses the full Xlib/GLX interface where as Qt uses an interface that is split between XCB and GLX.
As I have read up on this it seems like if the openGL application works under GLUT then it should be able to work under the XCB/GLX framework. I have tried to figure out what the differences might be but was not able to.
If someone could make suggestions on what I should look for I would be willing to try and help identify the problem.