Commit 82d3e03d by Geoff Lang

Set the return value in FenceSyncNULL::clientWait.

BUG=angleproject:1468 Change-Id: I3cf0d0a9486778b1d4384e00359034e08e425191 Reviewed-on: https://chromium-review.googlesource.com/414284Reviewed-by: 's avatarCorentin Wallez <cwallez@chromium.org>
parent 28cb0368
......@@ -29,6 +29,7 @@ gl::Error FenceSyncNULL::set(GLenum condition, GLbitfield flags)
gl::Error FenceSyncNULL::clientWait(GLbitfield flags, GLuint64 timeout, GLenum *outResult)
{
*outResult = GL_ALREADY_SIGNALED;
return gl::NoError();
}
......
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