diff options
author | 2024-09-25 23:32:45 +0000 | |
---|---|---|
committer | 2024-09-25 23:32:45 +0000 | |
commit | fbd6b122518bed41151bbcf6650bfb1ea2d25fec (patch) | |
tree | 5710d4fc5833c47eefc761f0beb1f60c9058402f /opengl | |
parent | 962b5a1391e3e27efce888d22706186ad86f0817 (diff) | |
parent | b9fb9c172052020b219c3ba1ffcab24983cc258b (diff) |
Merge "Suppress logcat error messages when frame timestamp is not found" into main am: 95583c28b5 am: b9fb9c1720
Original change: https://android-review.googlesource.com/c/platform/frameworks/native/+/3282094
Change-Id: I06c0c9f528a76088c0b2d0f47b99d0dbe76237c5
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
Diffstat (limited to 'opengl')
-rw-r--r-- | opengl/libs/EGL/egl_platform_entries.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/opengl/libs/EGL/egl_platform_entries.cpp b/opengl/libs/EGL/egl_platform_entries.cpp index 6e35041662..094fb59703 100644 --- a/opengl/libs/EGL/egl_platform_entries.cpp +++ b/opengl/libs/EGL/egl_platform_entries.cpp @@ -2405,7 +2405,7 @@ EGLBoolean eglGetFrameTimestampsANDROIDImpl(EGLDisplay dpy, EGLSurface surface, case 0: return EGL_TRUE; case -ENOENT: - return setError(EGL_BAD_ACCESS, (EGLBoolean)EGL_FALSE); + return setErrorQuiet(EGL_BAD_ACCESS, (EGLBoolean)EGL_FALSE); case -ENOSYS: return setError(EGL_BAD_SURFACE, (EGLBoolean)EGL_FALSE); case -EINVAL: |