summaryrefslogtreecommitdiffstats
path: root/config.tests/unix/egl/egl.cpp
blob: 0c7f32c3d055ad6cdb6b03c56635137351cff303 (plain)
1
2
3
4
5
6
7
8
9
10
#include <EGL/egl.h>

int main(int, char **)
{
    EGLint x = 0;
    EGLDisplay dpy = 0;
    EGLContext ctx = 0;
    eglDestroyContext(dpy, ctx);
    return 0;
}