egl/dri2: Add plumbing for EGL_OPENGL_ES3_BIT_KHR
[mesa.git] / src / egl / main / eglmisc.c
index d445c41810c875ff40f366f420a030fa03479336..92b0eae5f2a40ccac1a71e9a8b0b9e1d4586d603 100644 (file)
@@ -140,6 +140,9 @@ _eglUpdateAPIsString(_EGLDisplay *dpy)
    if (dpy->ClientAPIs & EGL_OPENGL_ES2_BIT)
       strcat(apis, "OpenGL_ES2 ");
 
+   if (dpy->ClientAPIs & EGL_OPENGL_ES3_BIT_KHR)
+      strcat(apis, "OpenGL_ES3 ");
+
    if (dpy->ClientAPIs & EGL_OPENVG_BIT)
       strcat(apis, "OpenVG ");