-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwithglxcontext.cpp
80 lines (69 loc) · 1.48 KB
/
withglxcontext.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
/* withglxcontext
*
* Create a simple glX context, and execute the argument.
* Destoy the context when the child exits.
*
* compile: c++ -o withglxcontext withglxcontext.cpp -lGL -lX11
*
*/
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/wait.h>
#include <GL/glx.h>
typedef GLXContext (*glXCreateContextAttribsARBProc)(Display*, GLXFBConfig, GLXContext, Bool, const int*);
int main (int argc, char ** argv)
{
printf("%s\n", argv[1]);
Display *display = XOpenDisplay(0);
if ( !display )
{
printf( "Failed to open X display\n" );
exit(1);
}
GLint att[] = { GLX_RGBA, None };
XVisualInfo *vi = 0;
vi = glXChooseVisual(display, 0, att);
if(!vi)
{
printf("Failed to get visual info\n");
exit(1);
}
GLXContext ctx = 0;
ctx = glXCreateContext( display, vi, 0, True );
if ( !ctx )
{
printf( "Failed to create an OpenGL context\n" );
exit(1);
}
// Verifying that context is a direct context
if ( ! glXIsDirect ( display, ctx ) )
{
printf( "Indirect GLX rendering context obtained\n" );
}
else
{
printf( "Direct GLX rendering context obtained\n" );
}
int child = fork();
if(child < 0)
{
exit(1);
}
else if(child == 0)
{
// child
execvp(argv[1], argv+1);
_exit(0);
}
else
{
// parent
wait(0);
glXMakeCurrent( display, 0, 0 );
glXDestroyContext( display, ctx );
printf("Context destroyed\n");
XCloseDisplay( display );
exit(0);
}
}