Commit 072c3519 by Geoff Lang Committed by Commit Bot

Fix missing return when validation fails in eglWaitNative.

BUG=angleproject:2707 Change-Id: Ibd70437e3a40a9a63b78ac9a4546c97611a97ba5 Reviewed-on: https://chromium-review.googlesource.com/1126458 Commit-Queue: Geoff Lang <geofflang@chromium.org> Reviewed-by: 's avatarJamie Madill <jmadill@chromium.org>
parent b1cc789c
...@@ -635,6 +635,7 @@ EGLBoolean EGLAPIENTRY WaitNative(EGLint engine) ...@@ -635,6 +635,7 @@ EGLBoolean EGLAPIENTRY WaitNative(EGLint engine)
{ {
thread->setError(EglBadParameter() << "the 'engine' parameter has an unrecognized value", thread->setError(EglBadParameter() << "the 'engine' parameter has an unrecognized value",
GetDebug(), "eglWaitNative", GetDisplayIfValid(display)); GetDebug(), "eglWaitNative", GetDisplayIfValid(display));
return EGL_FALSE;
} }
error = display->waitNative(thread->getContext(), engine); error = display->waitNative(thread->getContext(), engine);
......
...@@ -167,7 +167,6 @@ ...@@ -167,7 +167,6 @@
2635 WIN VULKAN : dEQP-EGL.functional.multicontext.non_shared_make_current = FAIL 2635 WIN VULKAN : dEQP-EGL.functional.multicontext.non_shared_make_current = FAIL
2635 WIN VULKAN : dEQP-EGL.functional.multicontext.shared_clear = FAIL 2635 WIN VULKAN : dEQP-EGL.functional.multicontext.shared_clear = FAIL
2635 WIN VULKAN : dEQP-EGL.functional.multicontext.shared_make_current = FAIL 2635 WIN VULKAN : dEQP-EGL.functional.multicontext.shared_make_current = FAIL
2635 WIN VULKAN : dEQP-EGL.functional.negative_api.wait_native = FAIL
2635 WIN VULKAN : dEQP-EGL.functional.query_context.get_current_context.rgba8888_pbuffer = FAIL 2635 WIN VULKAN : dEQP-EGL.functional.query_context.get_current_context.rgba8888_pbuffer = FAIL
2635 WIN VULKAN : dEQP-EGL.functional.query_context.get_current_display.rgba8888_pbuffer = FAIL 2635 WIN VULKAN : dEQP-EGL.functional.query_context.get_current_display.rgba8888_pbuffer = FAIL
2635 WIN VULKAN : dEQP-EGL.functional.query_context.get_current_surface.rgba8888_pbuffer = FAIL 2635 WIN VULKAN : dEQP-EGL.functional.query_context.get_current_surface.rgba8888_pbuffer = FAIL
...@@ -216,7 +215,6 @@ ...@@ -216,7 +215,6 @@
2546 LINUX : dEQP-EGL.functional.query_surface.simple.pbuffer.rgba8888_no_depth_no_stencil = FAIL 2546 LINUX : dEQP-EGL.functional.query_surface.simple.pbuffer.rgba8888_no_depth_no_stencil = FAIL
// Linux Vulkan failures // Linux Vulkan failures
2635 LINUX VULKAN : dEQP-EGL.functional.negative_api.wait_native = FAIL
2635 LINUX VULKAN : dEQP-EGL.functional.query_context.get_current_context.rgba8888_pbuffer = FAIL 2635 LINUX VULKAN : dEQP-EGL.functional.query_context.get_current_context.rgba8888_pbuffer = FAIL
2635 LINUX VULKAN : dEQP-EGL.functional.query_context.get_current_display.rgba8888_pbuffer = FAIL 2635 LINUX VULKAN : dEQP-EGL.functional.query_context.get_current_display.rgba8888_pbuffer = FAIL
2635 LINUX VULKAN : dEQP-EGL.functional.query_context.get_current_surface.rgba8888_pbuffer = FAIL 2635 LINUX VULKAN : dEQP-EGL.functional.query_context.get_current_surface.rgba8888_pbuffer = 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