Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit bfc17493 authored by Treehugger Robot's avatar Treehugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Fix typo." am: 90a56ebc am: dc9d27af

Original change: https://android-review.googlesource.com/c/platform/frameworks/native/+/1910817

Change-Id: Iefbd1aaaa93898d3c077721fceb131bfc106b89f
parents d5459d25 dc9d27af
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -251,7 +251,7 @@ When layering is enabled, GLES 1.x exclusive functions will continue to route to
   - Secondly, if you want to determine from an application that can't call out to ADB for this, you can check for the [EGL_ANDROID_GLES_layers](../../specs/EGL_ANDROID_GLES_layers.txt). It simply indicates support of this layering system:
     ```cpp
     std::string display_extensions = eglQueryString(EGL_NO_DISPLAY, EGL_EXTENSIONS);
     if (display_extension.find("EGL_ANDROID_GLES_layers") != std::string::npos)
     if (display_extensions.find("EGL_ANDROID_GLES_layers") != std::string::npos)
     {
        // Layers are supported!
     }