table of contents
GLXCREATEPBUFFER(3G) | OpenGL Manual | GLXCREATEPBUFFER(3G) |
NAME¶
glXCreatePbuffer - create an off-screen rendering area
C SPECIFICATION¶
GLXPbuffer glXCreatePbuffer(Display * dpy, GLXFBConfig config, const int * attrib_list);
PARAMETERS¶
dpy
config
attrib_list
DESCRIPTION¶
glXCreatePbuffer creates an off-screen rendering area and returns its XID. Any GLX rendering context that was created with respect to config can be used to render into this window. Use glXMakeContextCurrent() to associate the rendering area with a GLX rendering context.
The accepted attributes for a GLXPbuffer are:
GLX_PBUFFER_WIDTH
GLX_PBUFFER_HEIGHT
GLX_LARGEST_PBUFFER
GLX_PRESERVED_CONTENTS
GLXPbuffers contain the color and ancillary buffers specified by config. It is possible to create a pixel buffer with back buffers and to swap those buffers using glXSwapBuffers().
NOTES¶
glXCreatePbuffer is available only if the GLX version is 1.3 or greater.
If the GLX version is 1.1 or 1.0, the GL version must be 1.0. If the GLX version is 1.2, then the GL version must be 1.1. If the GLX version is 1.3, then the GL version must be 1.2.
GLXPbuffers are allocated from frame buffer resources; applications should consider deallocating them when they are not in use.
ERRORS¶
BadAlloc is generated if there are insufficient resources to allocate the requested GLXPbuffer.
GLXBadFBConfig is generated if config is not a valid GLXFBConfig.
BadMatch is generated if config does not support rendering to pixel buffers (e.g., GLX_DRAWABLE_TYPE does not contain GLX_PBUFFER_BIT).
SEE ALSO¶
glXChooseFBConfig(), glXCreatePbuffer, glXMakeContextCurrent(), glXSelectEvent()
COPYRIGHT¶
Copyright © 1991-2006 Silicon Graphics, Inc. This document is licensed under the SGI Free Software B License. For details, see http://oss.sgi.com/projects/FreeB/.
AUTHORS¶
opengl.org
05/02/2014 | opengl.org |