Tagged Questions
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;
...
1
vote
1answer
34 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 ...