Tagged Questions

1
vote
1answer
32 views

Rendering into GLX back buffer with X calls?

I'm playing around with GLX and xlib and I'm curious about rendering using straight X calls on top of an openGL buffer. The glx intro clearly says that: GLX extended X servers make a subset of ...
1
vote
2answers
17 views

Simple way to determine if my application is connected to a local X-server?

When creating a GLX context, you have to specify whether you want direct rendering or not. Direct rendering provides a performance advantage sometimes, so it's preferable to use that, but it can't be ...
1
vote
1answer
689 views

Rendering OpenGL FBO Texture to GLXPixmap

I'm writing some code which is intended to: 1. Render into an OpenGL texture using an FBO. 2. Draw from the FBO texture to a GLXPixmap, which is attached to an X Pixmap. 3. Draw the X Pixmap to a ...
0
votes
2answers
43 views

glXChooseVisual fails when using Mono-C# on linux

When I call "glXChooseVisual" (aka GLX.ChooseVisual in C#) it returns a null IntPtr. Now what confuses me is when I build the NeHe lesson02 basically using the same code it works (the only difference ...
0
votes
1answer
158 views

Set a image(jpeg | png) backgound using GLX ( opengl and Xlib)

I create a x11 window with opengl functionality, i need to load a image(jpeg | png) on its background where size of window be bigger than image, it doesn't matter. I surfed to get resylts like use ...
0
votes
2answers
622 views

Create GLX context in specific region of a window

I would like to create an OpenGL context with GLX inside a window. However, I do not want it to span over the whole window region. Instead, it should only cover a subregion. For example, GLUT ...