summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Charlie Lao <cclao@google.com> 2020-01-14 11:05:53 -0800
committer Charlie Lao <cclao@google.com> 2020-01-14 11:12:56 -0800
commitc51d5f5bd92e32ce5cbef770afbeca93e0fb0a15 (patch)
tree6f808a154eeadc968eef8ef78559ec62855845e9
parentb168232839544cc033bb98e18d3e478afb5ea929 (diff)
OpenGL: Moving comment to the right place
Test: Ensure Pixel4XL boot and driver loaded. This does not have any functional change. Bug: b/147019446 Change-Id: I8bbdb223e9f6d882e4d1b8cfd7a630f147e5c2d7
-rw-r--r--opengl/libs/EGL/egl.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/opengl/libs/EGL/egl.cpp b/opengl/libs/EGL/egl.cpp
index 768d3b54bc..2e183b3ba2 100644
--- a/opengl/libs/EGL/egl.cpp
+++ b/opengl/libs/EGL/egl.cpp
@@ -172,10 +172,6 @@ egl_connection_t* egl_get_connection() {
// ----------------------------------------------------------------------------
-// this mutex protects:
-// d->disp[]
-// egl_init_drivers_locked()
-//
static EGLBoolean egl_init_drivers_locked() {
if (sEarlyInitState) {
// initialized by static ctor. should be set here.
@@ -211,6 +207,8 @@ static EGLBoolean egl_init_glesv1_drivers_locked() {
return loader.load_glesv1_driver(cnx);
}
+// this mutex protects driver load logic as a critical section since it accesses to global variable
+// like gEGLImpl
static pthread_mutex_t sInitDriverMutex = PTHREAD_MUTEX_INITIALIZER;
EGLBoolean egl_init_drivers() {