| 397 | |
| 398 | |
| 399 | EGLContext eglCreateContext(EGLDisplay display, EGLConfig config, |
| 400 | EGLContext share_context, const EGLint *attrib_list) |
| 401 | { |
| 402 | WRAP_DISPLAY_INIT(EGL_NOT_INITIALIZED); |
| 403 | return _eglCreateContext(display, config, share_context, attrib_list); |
| 404 | bailout: |
| 405 | return EGL_NO_CONTEXT; |
| 406 | } |
| 407 | |
| 408 | |
| 409 | EGLSurface eglCreatePixmapSurface(EGLDisplay display, EGLConfig config, |
no outgoing calls
no test coverage detected