Merge pull request #7963 from ameerj/gl_fence_nit

gl_fence_manager: Minor optimization to signal querying
This commit is contained in:
Mai M 2022-02-28 19:53:24 -05:00 committed by GitHub
commit 96dbb9233a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -31,9 +31,8 @@ bool GLInnerFence::IsSignaled() const {
return true;
}
ASSERT(sync_object.handle != 0);
GLsizei length;
GLint sync_status;
glGetSynciv(sync_object.handle, GL_SYNC_STATUS, sizeof(GLint), &length, &sync_status);
glGetSynciv(sync_object.handle, GL_SYNC_STATUS, 1, nullptr, &sync_status);
return sync_status == GL_SIGNALED;
}