Lines Matching refs:GLXFBConfig

442 extern GLXFBConfig * glXGetFBConfigs (Display *, int, int *);
443 extern GLXFBConfig * glXChooseFBConfig (Display *, int, const int *, int *);
444 extern int glXGetFBConfigAttrib (Display *, GLXFBConfig, int, int *);
445 extern XVisualInfo * glXGetVisualFromFBConfig (Display *, GLXFBConfig);
446 extern GLXWindow glXCreateWindow (Display *, GLXFBConfig, Window, const int *);
448 extern GLXPixmap glXCreatePixmap (Display *, GLXFBConfig, Pixmap, const int *);
450 extern GLXPbuffer glXCreatePbuffer (Display *, GLXFBConfig, const int *);
453 extern GLXContext glXCreateNewContext (Display *, GLXFBConfig, int, GLXContext, Bool);
461 typedef GLXFBConfig * ( * PFNGLXGETFBCONFIGSPROC) (Display *dpy, int screen, int *nelements);
462 typedef GLXFBConfig * ( * PFNGLXCHOOSEFBCONFIGPROC) (Display *dpy, int screen, const int *attrib_list, int *nelements);
463 typedef int ( * PFNGLXGETFBCONFIGATTRIBPROC) (Display *dpy, GLXFBConfig config, int attribute, int *value);
464 typedef XVisualInfo * ( * PFNGLXGETVISUALFROMFBCONFIGPROC) (Display *dpy, GLXFBConfig config);
465 typedef GLXWindow ( * PFNGLXCREATEWINDOWPROC) (Display *dpy, GLXFBConfig config, Window win, const int *attrib_list);
467 typedef GLXPixmap ( * PFNGLXCREATEPIXMAPPROC) (Display *dpy, GLXFBConfig config, Pixmap pixmap, const int *attrib_list);
469 typedef GLXPbuffer ( * PFNGLXCREATEPBUFFERPROC) (Display *dpy, GLXFBConfig config, const int *attrib_list);
472 typedef GLXContext ( * PFNGLXCREATENEWCONTEXTPROC) (Display *dpy, GLXFBConfig config, int render_type, GLXContext share_list, Bool direct);