| 433 | // On Linux, GLXFBConfigSGIX is typedef'd to GLXFBConfig |
| 434 | |
| 435 | GLXContext glXCreateContextWithConfigSGIX(Display *dpy, GLXFBConfigSGIX config, |
| 436 | int render_type, GLXContext share_list, Bool direct) |
| 437 | { |
| 438 | return glXCreateNewContext(dpy, config, render_type, share_list, direct); |
| 439 | } |
| 440 | |
| 441 | |
| 442 | // We maintain a hash of GLX drawables to 2D X display handles for two reasons: |
no test coverage detected