Lines Matching refs:contextAttributes
1349 std::vector<EGLint> contextAttributes; in createEglContext() local
1350 contextAttributes.reserve(7); in createEglContext()
1351 contextAttributes.push_back(EGL_CONTEXT_CLIENT_VERSION); in createEglContext()
1352 contextAttributes.push_back(contextClientVersion); in createEglContext()
1354 contextAttributes.push_back(EGL_CONTEXT_PRIORITY_LEVEL_IMG); in createEglContext()
1355 contextAttributes.push_back(EGL_CONTEXT_PRIORITY_HIGH_IMG); in createEglContext()
1358 contextAttributes.push_back(EGL_PROTECTED_CONTENT_EXT); in createEglContext()
1359 contextAttributes.push_back(EGL_TRUE); in createEglContext()
1361 contextAttributes.push_back(EGL_NONE); in createEglContext()
1363 EGLContext context = eglCreateContext(display, config, shareContext, contextAttributes.data()); in createEglContext()
1373 contextAttributes[1] = 2; in createEglContext()
1374 context = eglCreateContext(display, config, shareContext, contextAttributes.data()); in createEglContext()