Home
last modified time | relevance | path

Searched refs:contextAttributes (Results 1 – 6 of 6) sorted by relevance

/frameworks/base/libs/hwui/renderthread/
DEglManager.cpp358 std::vector<EGLint> contextAttributes; in createContext() local
359 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()
/frameworks/native/libs/renderengine/skia/
DSkiaGLRenderEngine.cpp1446 std::vector<EGLint> contextAttributes; in createEglContext() local
1447 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 …]
/frameworks/native/libs/renderengine/gl/
DGLESRenderEngine.cpp1662 std::vector<EGLint> contextAttributes; in createEglContext() local
1663 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 …]
/frameworks/av/media/libstagefright/renderfright/gl/
DGLESRenderEngine.cpp1576 std::vector<EGLint> contextAttributes; in createEglContext() local
1577 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 …]
/frameworks/native/opengl/tests/EGLTest/
DEGL_test.cpp743 std::vector<EGLint> contextAttributes; in TEST_F() local
744 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()
/frameworks/base/cmds/bootanimation/
DBootAnimation.cpp568 EGLint contextAttributes[] = {EGL_CONTEXT_CLIENT_VERSION, 2, EGL_NONE}; in readyToRun() local
569 EGLContext context = eglCreateContext(display, config, nullptr, contextAttributes); in readyToRun()