We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c4910bb commit 97ba154Copy full SHA for 97ba154
1 file changed
opengl/libs/EGL/Loader.cpp
@@ -599,6 +599,9 @@ Loader::driver_t* Loader::attempt_to_load_angle(egl_connection_t* cnx) {
599
driver_t* hnd = nullptr;
600
601
// ANGLE doesn't ship with GLES library, and thus we skip GLES driver.
602
+ // b/370113081: if there is no libEGL_angle.so in namespace ns, libEGL_angle.so in system
603
+ // partition will be loaded instead. If there is no libEGL_angle.so in system partition, no
604
+ // angle libs are loaded, and app that sets to use ANGLE will crash.
605
void* dso = load_angle("EGL", ns);
606
if (dso) {
607
initialize_api(dso, cnx, EGL);
0 commit comments