1GLXFREECONTEXTEXT() GLXFREECONTEXTEXT()
2
3
4
6 glXFreeContextEXT - free client-side memory for imported context
7
8
10 void glXFreeContextEXT( Display *dpy,
11 GLXContext ctx )
12
13 delim $$
14
16 dpy Specifies the connection to the X server.
17
18
19 ctx Specifies a GLX rendering context.
20
21
23 glXFreeContextEXT frees the client-side part of a GLXContext that was
24 created with glXImportContext. glXFreeContextEXT does not free the
25 server-side context information or the XID associated with the server-
26 side context.
27
28 glXFreeContextEXT is part of the EXT_import_context extension, not part
29 of the core GLX command set. If GLX_EXT_import_context is included in
30 the string returned by glXQueryExtensionsString, when called with argu‐
31 ment GLX_EXTENSIONS, extension EXT_vertex_array is supported.
32
33
35 GLXBadContext is generated if ctx does not refer to a valid context.
36
37
39 glXCreateContext, glXQueryVersion, glXQueryExtensionsString, glXImport‐
40 ContextEXT
41
42
43
44 GLXFREECONTEXTEXT()