Skip to content

Commit 95583c2

Browse files
chrisforbesGerrit Code Review
authored andcommitted
Merge "Suppress logcat error messages when frame timestamp is not found" into main
2 parents bee3b7a + 20d7bad commit 95583c2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

opengl/libs/EGL/egl_platform_entries.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2375,7 +2375,7 @@ EGLBoolean eglGetFrameTimestampsANDROIDImpl(EGLDisplay dpy, EGLSurface surface,
23752375
case 0:
23762376
return EGL_TRUE;
23772377
case -ENOENT:
2378-
return setError(EGL_BAD_ACCESS, (EGLBoolean)EGL_FALSE);
2378+
return setErrorQuiet(EGL_BAD_ACCESS, (EGLBoolean)EGL_FALSE);
23792379
case -ENOSYS:
23802380
return setError(EGL_BAD_SURFACE, (EGLBoolean)EGL_FALSE);
23812381
case -EINVAL:

0 commit comments

Comments
 (0)