Tagged Questions
The glx tag has no wiki summary.
5
votes
5answers
50 views
X11/GLX - Fullscreen mode?
I am trying to create a Linux application - a screensaver, in this case - and it is proving remarkably difficult to find information on the simple task of making a window full-screen. Even the code of ...
2
votes
1answer
467 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
1answer
393 views
Why does my simple GLX app leak memory?
The code below shows a small 48 byte leak in valgrind.
#include <X11/Xlib.h>
#include <GL/glx.h>
#include <unistd.h>
int main( int argc, char* argv[] )
{
Display* _display;
...
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
49 views
Libgdx not using Opengl ES 2.0
Preferably, I'd like to use OpenGL ES 2.0 for a new 3d game I started making. Anyway, I've been developing it on an Ubuntu PC (not top-of-the-line but decent) I bought in 2010.
...
1
vote
1answer
33 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
18 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
690 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
401 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
160 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
189 views
Multithreaded game program suddenly locks up on glXSwapBuffers
I'm polishing up a Linux game program I wrote, and after about 10 minutes of playing, it suddenly slows down to 1 frame per thirty seconds or so, slowing the entire system down as well. Even after ...
0
votes
1answer
197 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!
0
votes
2answers
624 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 ...