mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-12 20:27:53 +00:00
[client] egl: handle eglQuerySurface(EGL_BUFFER_AGE_EXT) error
This commit is contained in:
parent
88a95aeab0
commit
15066c7345
1 changed files with 5 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue