[client] egl: handle eglQuerySurface(EGL_BUFFER_AGE_EXT) error

This commit is contained in:
Quantum 2021-12-13 18:30:29 -05:00 committed by Geoffrey McRae
parent 88a95aeab0
commit 15066c7345

View File

@ -906,7 +906,11 @@ inline static EGLint egl_bufferAge(struct Inst * this)
return 0;
EGLint result;
eglQuerySurface(this->display, this->surface, EGL_BUFFER_AGE_EXT, &result);
if (eglQuerySurface(this->display, this->surface, EGL_BUFFER_AGE_EXT, &result) == EGL_FALSE)
{
DEBUG_ERROR("eglQuerySurface(EGL_BUFFER_AGE_EXT) failed");
return 0;
}
return result;
}