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

Commit 9f430091 authored by Jamie Gennis's avatar Jamie Gennis
Browse files

EGL: fix blob cache extension detection

Bug: 5474671
Change-Id: I6359063ccf23f076fc84c80b8a2f6731a65eef18
parent 6a6ff201
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -85,7 +85,7 @@ void egl_cache_t::initialize(egl_display_t *display) {
            bool atStart = !strncmp(BC_EXT_STR " ", exts, bcExtLen+1);
            bool atEnd = (bcExtLen+1) < extsLen &&
                    !strcmp(" " BC_EXT_STR, exts + extsLen - (bcExtLen+1));
            bool inMiddle = strstr(" " BC_EXT_STR " ", exts);
            bool inMiddle = strstr(exts, " " BC_EXT_STR " ");
            if (equal || atStart || atEnd || inMiddle) {
                PFNEGLSETBLOBCACHEFUNCSANDROIDPROC eglSetBlobCacheFuncsANDROID;
                eglSetBlobCacheFuncsANDROID =