Searched refs:contextAttributes (Results 1 – 6 of 6) sorted by relevance
358 std::vector<EGLint> contextAttributes; in createContext() local359 contextAttributes.reserve(5); in createContext()360 contextAttributes.push_back(EGL_CONTEXT_CLIENT_VERSION); in createContext()361 contextAttributes.push_back(GLES_VERSION); in createContext()363 contextAttributes.push_back(EGL_CONTEXT_PRIORITY_LEVEL_IMG); in createContext()364 contextAttributes.push_back(Properties::contextPriority); in createContext()366 contextAttributes.push_back(EGL_NONE); in createContext()369 EGL_NO_CONTEXT, contextAttributes.data()); in createContext()
1446 std::vector<EGLint> contextAttributes; in createEglContext() local1447 contextAttributes.reserve(7); in createEglContext()1448 contextAttributes.push_back(EGL_CONTEXT_CLIENT_VERSION); in createEglContext()1449 contextAttributes.push_back(contextClientVersion); in createEglContext()1451 contextAttributes.push_back(EGL_CONTEXT_PRIORITY_LEVEL_IMG); in createEglContext()1454 contextAttributes.push_back(EGL_CONTEXT_PRIORITY_REALTIME_NV); in createEglContext()1457 contextAttributes.push_back(EGL_CONTEXT_PRIORITY_MEDIUM_IMG); in createEglContext()1460 contextAttributes.push_back(EGL_CONTEXT_PRIORITY_LOW_IMG); in createEglContext()1464 contextAttributes.push_back(EGL_CONTEXT_PRIORITY_HIGH_IMG); in createEglContext()1469 contextAttributes.push_back(EGL_PROTECTED_CONTENT_EXT); in createEglContext()[all …]
1662 std::vector<EGLint> contextAttributes; in createEglContext() local1663 contextAttributes.reserve(7); in createEglContext()1664 contextAttributes.push_back(EGL_CONTEXT_CLIENT_VERSION); in createEglContext()1665 contextAttributes.push_back(contextClientVersion); in createEglContext()1667 contextAttributes.push_back(EGL_CONTEXT_PRIORITY_LEVEL_IMG); in createEglContext()1670 contextAttributes.push_back(EGL_CONTEXT_PRIORITY_REALTIME_NV); in createEglContext()1673 contextAttributes.push_back(EGL_CONTEXT_PRIORITY_MEDIUM_IMG); in createEglContext()1676 contextAttributes.push_back(EGL_CONTEXT_PRIORITY_LOW_IMG); in createEglContext()1680 contextAttributes.push_back(EGL_CONTEXT_PRIORITY_HIGH_IMG); in createEglContext()1685 contextAttributes.push_back(EGL_PROTECTED_CONTENT_EXT); in createEglContext()[all …]
1576 std::vector<EGLint> contextAttributes; in createEglContext() local1577 contextAttributes.reserve(7); in createEglContext()1578 contextAttributes.push_back(EGL_CONTEXT_CLIENT_VERSION); in createEglContext()1579 contextAttributes.push_back(contextClientVersion); in createEglContext()1581 contextAttributes.push_back(EGL_CONTEXT_PRIORITY_LEVEL_IMG); in createEglContext()1582 contextAttributes.push_back(EGL_CONTEXT_PRIORITY_HIGH_IMG); in createEglContext()1585 contextAttributes.push_back(EGL_PROTECTED_CONTENT_EXT); in createEglContext()1586 contextAttributes.push_back(EGL_TRUE); in createEglContext()1588 contextAttributes.push_back(EGL_NONE); in createEglContext()1590 EGLContext context = eglCreateContext(display, config, shareContext, contextAttributes.data()); in createEglContext()[all …]
743 std::vector<EGLint> contextAttributes; in TEST_F() local744 contextAttributes.reserve(4); in TEST_F()745 contextAttributes.push_back(EGL_CONTEXT_CLIENT_VERSION); in TEST_F()746 contextAttributes.push_back(2); in TEST_F()747 contextAttributes.push_back(EGL_NONE); in TEST_F()748 contextAttributes.push_back(EGL_NONE); in TEST_F()751 contextAttributes.data()); in TEST_F()
568 EGLint contextAttributes[] = {EGL_CONTEXT_CLIENT_VERSION, 2, EGL_NONE}; in readyToRun() local569 EGLContext context = eglCreateContext(display, config, nullptr, contextAttributes); in readyToRun()