1
vote
1answer
43 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
88 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 …
0
votes
2answers
105 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 …
