summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTreehugger Robot <treehugger-gerrit@google.com>2023-05-29 04:54:53 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2023-05-29 04:54:53 +0000
commit935d53ce6e1f511bdf1b476c8f57a0f34db6d9e0 (patch)
tree42c38cefef93e485e57af9218822cfa360217c92
parentb7a27525ebcf0bfeb3055b6120f35888a6a47b6a (diff)
parentb5a0645f97eae86883b285a4ce294524275806c5 (diff)
downloadnative-android13-gsi.tar.gz
Merge "Fix the missing extension EGL_ANDROID_image_native_buffer" into android13-gsiandroid13-gsi
-rw-r--r--opengl/libs/EGL/egl_display.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/opengl/libs/EGL/egl_display.cpp b/opengl/libs/EGL/egl_display.cpp
index c2c856e22a..6593c1bb16 100644
--- a/opengl/libs/EGL/egl_display.cpp
+++ b/opengl/libs/EGL/egl_display.cpp
@@ -326,10 +326,10 @@ EGLBoolean egl_display_t::initialize(EGLint* major, EGLint* minor) {
// device's present timestamps are reliable (which may not be the case on emulators).
if (cnx->useAngle) {
if (android::base::GetBoolProperty("service.sf.present_timestamp", false)) {
- mExtensionString.append("EGL_ANDROID_get_frame_timestamps");
+ mExtensionString.append("EGL_ANDROID_get_frame_timestamps ");
}
} else {
- mExtensionString.append("EGL_ANDROID_get_frame_timestamps");
+ mExtensionString.append("EGL_ANDROID_get_frame_timestamps ");
}
hasColorSpaceSupport = findExtension(disp.queryString.extensions, "EGL_KHR_gl_colorspace");