Tagged Questions

2
votes
1answer
466 views

How to create OpenGL-enabled window with transparent background using xlib and glx

I'd like to create a window with transparent background and then render something onto it using OpenGL. I don't want to use the trick where whatever is behind the window is captured and then painted ...
2
votes
3answers
975 views

OpenGL Colorspace Conversion

Does anyone know how to create a texture with a YUV colorspace so that we can get hardware based YUV to RGB colorspace conversion without having to use a fragment shader? I'm using an NVidia 9400 and ...
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
382 views

OpenGL GLX extension not supported

I had installed OpenGL and freeglut in Ubuntu 10.04 and it worked fine in 10.04 and 10.10. But after I upgraded to 11.04, the applications I've developed using OpenGL is not running properly. They're ...
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
1answer
196 views

Drawing in several windows with gl/glx

I am looking at the NeHe OpenGL tutorials (nehe.gamedev.net), which as almost every example also for Linux/glx. But how can open several windows and draw into all of them? Thanks!