Lines Matching refs:attribList
91 vector<EGLint> attribList; in createGLContext() local
99 attribList.push_back(EGL_CONTEXT_CLIENT_VERSION); in createGLContext()
100 attribList.push_back(contextType.getMajorVersion()); in createGLContext()
107 attribList.push_back(EGL_CONTEXT_MAJOR_VERSION_KHR); in createGLContext()
108 attribList.push_back(contextType.getMajorVersion()); in createGLContext()
109 attribList.push_back(EGL_CONTEXT_MINOR_VERSION_KHR); in createGLContext()
110 attribList.push_back(contextType.getMinorVersion()); in createGLContext()
122 attribList.push_back(EGL_CONTEXT_MAJOR_VERSION_KHR); in createGLContext()
123 attribList.push_back(contextType.getMajorVersion()); in createGLContext()
124 attribList.push_back(EGL_CONTEXT_MINOR_VERSION_KHR); in createGLContext()
125 attribList.push_back(contextType.getMinorVersion()); in createGLContext()
126 attribList.push_back(EGL_CONTEXT_OPENGL_PROFILE_MASK_KHR); in createGLContext()
127 …attribList.push_back(glu::isContextTypeGLCore(contextType) ? EGL_CONTEXT_OPENGL_CORE_PROFILE_BIT_K… in createGLContext()
148 attribList.push_back(EGL_CONTEXT_OPENGL_ROBUST_ACCESS_EXT); in createGLContext()
149 attribList.push_back(EGL_TRUE); in createGLContext()
159 attribList.push_back(EGL_CONTEXT_OPENGL_NO_ERROR_KHR); in createGLContext()
160 attribList.push_back(EGL_TRUE); in createGLContext()
174 attribList.push_back(EGL_CONTEXT_FLAGS_KHR); in createGLContext()
175 attribList.push_back(flags); in createGLContext()
180 attribList.push_back(EGL_CONTEXT_OPENGL_RESET_NOTIFICATION_STRATEGY_KHR); in createGLContext()
182 attribList.push_back(EGL_CONTEXT_OPENGL_RESET_NOTIFICATION_STRATEGY_EXT); in createGLContext()
187 attribList.push_back(EGL_NO_RESET_NOTIFICATION_KHR); in createGLContext()
189 attribList.push_back(EGL_LOSE_CONTEXT_ON_RESET_KHR); in createGLContext()
195 attribList.push_back(EGL_NONE); in createGLContext()
198 context = egl.createContext(display, eglConfig, sharedContext, &(attribList[0])); in createGLContext()