i have a program that does some GPU computing with Optional OpenGL rendering. The use dynamic is as follow:

  1. init function (init GLEW being the most relevant).
  2. load mesh from file to GPU (use glGenBuffers are related functions to make VBO).
  3. process this mesh in parallel (GPU Computing API).
  4. save mesh into file.

my problem is that when mesh is loading i use opengl calls and wihout context created i just get segmentation fault.

Edit: Evolution of the problem:

  1. I was missing GL/glx.h I thought that GL/glxew.h included it, thanks to the answers that got fixed.
  2. I was missing glXMakeCurrent; and therefore it was like having zero contexts.
  3. After this fixes, it works :).

also thanks for the tools suggestions, i would gladly use them it is just that i needed the low level code for this particular case.

link|improve this question

Note: this is not a forum; we don't put "SOLVED" after a solution is accepted. We can see that a solution was accepted just from the green checkbox next to the solution ;) – Nicol Bolas Sep 22 '11 at 4:46
feedback

3 Answers

up vote 2 down vote accepted

i tried making a context with this code ( i am using glew, so i change the header to GL/glxew.h but the rest of this code remains the same)

Don'd do it. glxew is used for loading glx functions. You probably don't need it.

If you want to use GLEW, replace GL/gl.h with GL/glew.h leave GL/glx.h as it is.

X11 and GLX are quite complex, consider using sdl of glfw instead.

link|improve this answer
thanks for the clarification, even when i knew that glew is an extension wrangler for gl, i assumed that glxew did what glx does and more. – Cristobal Sep 21 '11 at 21:32
i changed the header for GL/glx.h and now is does create the context, however i still get the error when using the gl buffer functions. – Cristobal Sep 21 '11 at 21:33
@Cristobal: Make sure glewInit is returning GLEW_OK and that your OpenGL drivers actually support VBO. – Banthar Sep 21 '11 at 21:43
feedback

Just wildly guessing here, but could it be that GLEW redefined glXChooseFBConfig with something custom? Something in the call of glXChooseFBConfig dereferences an invalid pointer. So either glXChooseFBConfig itself is invalid, or fbcount to so small, or visual_attribs not properly terminated.

link|improve this answer
i think that was one of the problems, i am now one step closer. updated the question – Cristobal Sep 21 '11 at 21:34
feedback

GLEW has nothing to do with context creation. It is an OpenGL loading library; it loads OpenGL functions. It needs you to have an OpenGL context in order for it to function.

Since you're not really using this context for drawing stuff, I would suggest using an off-the-shelf tool for context creation. GLFW or FreeGLUT would be the most light-weight alternatives. Just use them to create a context, do what you need to do, then destroy the windows they create.

link|improve this answer
thanks for clarification too, i got updates on the question (also regarding why i am avoiding high level tools) – Cristobal Sep 21 '11 at 21:33
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.