Lines Matching refs:contextAttributes
1656 std::vector<EGLint> contextAttributes; in createEglContext() local
1657 contextAttributes.reserve(7); in createEglContext()
1658 contextAttributes.push_back(EGL_CONTEXT_CLIENT_VERSION); in createEglContext()
1659 contextAttributes.push_back(contextClientVersion); in createEglContext()
1661 contextAttributes.push_back(EGL_CONTEXT_PRIORITY_LEVEL_IMG); in createEglContext()
1664 contextAttributes.push_back(EGL_CONTEXT_PRIORITY_REALTIME_NV); in createEglContext()
1667 contextAttributes.push_back(EGL_CONTEXT_PRIORITY_MEDIUM_IMG); in createEglContext()
1670 contextAttributes.push_back(EGL_CONTEXT_PRIORITY_LOW_IMG); in createEglContext()
1674 contextAttributes.push_back(EGL_CONTEXT_PRIORITY_HIGH_IMG); in createEglContext()
1679 contextAttributes.push_back(EGL_PROTECTED_CONTENT_EXT); in createEglContext()
1680 contextAttributes.push_back(EGL_TRUE); in createEglContext()
1682 contextAttributes.push_back(EGL_NONE); in createEglContext()
1684 EGLContext context = eglCreateContext(display, config, shareContext, contextAttributes.data()); in createEglContext()
1694 contextAttributes[1] = 2; in createEglContext()
1695 context = eglCreateContext(display, config, shareContext, contextAttributes.data()); in createEglContext()