Fix live wallpaper

BUG: 33779855

Test: boot emulator with GLES3 enabled, use live wallpaper and it should
display.

Change-Id: I464b650b4adc534394a92c791c0e8029d06db9f7
diff --git a/system/egl/egl.cpp b/system/egl/egl.cpp
index 2819413..9500fef 100644
--- a/system/egl/egl.cpp
+++ b/system/egl/egl.cpp
@@ -1386,7 +1386,12 @@
             }
             reset_notification_strategy = attrib_val;
             break;
+        case EGL_CONTEXT_PRIORITY_LEVEL_IMG:
+            // According to the spec, we are allowed not to honor this hint.
+            // https://www.khronos.org/registry/EGL/extensions/IMG/EGL_IMG_context_priority.txt
+            break;
         default:
+            ALOGV("eglCreateContext unsupported attrib 0x%x", attrib_list[0]);
             setErrorReturn(EGL_BAD_ATTRIBUTE, EGL_NO_CONTEXT);
         }
         attrib_list+=2;