Commit 2071b5c3 by Jamie Madill Committed by Commit Bot

Expose EGL 1.5.

This is helpful for figuring out if we can support the DEBUG property when initializing an EGL context. It also will be necessary down the line for Android. Bug: angleproject:4596 Bug: b/154921118 Bug: angleproject:4606 Change-Id: I01c2cbaa21495e3620b7858f2a309c9a884033ec Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/2176277 Commit-Queue: Jamie Madill <jmadill@chromium.org> Reviewed-by: 's avatarCourtney Goeltzenleuchter <courtneygo@google.com>
parent 313b527b
......@@ -90,7 +90,7 @@ EGLBoolean EGLAPIENTRY EGL_Initialize(EGLDisplay dpy, EGLint *major, EGLint *min
if (major)
*major = 1;
if (minor)
*minor = 4;
*minor = 5;
thread->setSuccess();
return EGL_TRUE;
......@@ -149,7 +149,7 @@ const char *EGLAPIENTRY EGL_QueryString(EGLDisplay dpy, EGLint name)
result = display->getVendorString().c_str();
break;
case EGL_VERSION:
result = "1.4 (ANGLE " ANGLE_VERSION_STRING ")";
result = "1.5 (ANGLE " ANGLE_VERSION_STRING ")";
break;
default:
thread->setError(EglBadParameter(), GetDebug(), "eglQueryString",
......
......@@ -249,3 +249,7 @@
// SwANGLE bots
4495 WIN SWIFTSHADER : dEQP-EGL.functional.sharing.gles2.multithread.random_egl_server_sync.shaders.compile.9 = SKIP
// EGL images with the GL back-ends are not supported
4606 OPENGL : dEQP-EGL.functional.image.api.create_image_gles2_* = FAIL
4606 GLES : dEQP-EGL.functional.image.api.create_image_gles2_* = FAIL
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment