| 605 | } |
| 606 | |
| 607 | GLXPixmap glXCreateGLXPixmapWithConfigSGIX(Display *dpy, |
| 608 | GLXFBConfigSGIX config, Pixmap pixmap) |
| 609 | { |
| 610 | return glXCreatePixmap(dpy, config, pixmap, NULL); |
| 611 | } |
| 612 | |
| 613 | |
| 614 | // Fake out the application into thinking it's getting a window drawable, but |
nothing calls this directly
no test coverage detected