Lines Matching refs:GLXFBConfig

422 extern GLXFBConfig * glXGetFBConfigs (Display *, int, int *);
423 extern GLXFBConfig * glXChooseFBConfig (Display *, int, const int *, int *);
424 extern int glXGetFBConfigAttrib (Display *, GLXFBConfig, int, int *);
425 extern XVisualInfo * glXGetVisualFromFBConfig (Display *, GLXFBConfig);
426 extern GLXWindow glXCreateWindow (Display *, GLXFBConfig, Window, const int *);
428 extern GLXPixmap glXCreatePixmap (Display *, GLXFBConfig, Pixmap, const int *);
430 extern GLXPbuffer glXCreatePbuffer (Display *, GLXFBConfig, const int *);
433 extern GLXContext glXCreateNewContext (Display *, GLXFBConfig, int, GLXContext, Bool);
441 typedef GLXFBConfig * ( * PFNGLXGETFBCONFIGSPROC) (Display *dpy, int screen, int *nelements);
442 typedef GLXFBConfig * ( * PFNGLXCHOOSEFBCONFIGPROC) (Display *dpy, int screen, const int *attrib_list, int *nelements);
443 typedef int ( * PFNGLXGETFBCONFIGATTRIBPROC) (Display *dpy, GLXFBConfig config, int attribute, int *value);
444 typedef XVisualInfo * ( * PFNGLXGETVISUALFROMFBCONFIGPROC) (Display *dpy, GLXFBConfig config);
445 typedef GLXWindow ( * PFNGLXCREATEWINDOWPROC) (Display *dpy, GLXFBConfig config, Window win, const int *attrib_list);
447 typedef GLXPixmap ( * PFNGLXCREATEPIXMAPPROC) (Display *dpy, GLXFBConfig config, Pixmap pixmap, const int *attrib_list);
449 typedef GLXPbuffer ( * PFNGLXCREATEPBUFFERPROC) (Display *dpy, GLXFBConfig config, const int *attrib_list);
452 typedef GLXContext ( * PFNGLXCREATENEWCONTEXTPROC) (Display *dpy, GLXFBConfig config, int render_type, GLXContext share_list, Bool direct);