Lines Matching refs:eglw
99 eglw::EGLConfig getConfig (const eglw::Library& egl, eglw::EGLDisplay display)
112 const eglw::EGLint attribList[] =
117 const eglw::EGLint pbufferAttribList[] =
128 const eglw::Library& egl = m_eglTestCtx.getLibrary();
130 const eglw::EGLConfig config = getConfig(egl, *display);
135 std::vector<eglw::EGLContext> contexts;
152 const eglw::EGLContext sharedContext = (m_sharing == SHARING_SHARED && contextCount > 0 ? contexts[rng.getUint32() % (deUint32)contextCount] : EGL_NO_CONTEXT);
153 const eglw::EGLContext context = egl.createContext(*display, config, sharedContext, attribList);
154 const eglw::EGLint error = egl.getError();
181 const eglw::EGLBoolean result = egl.makeCurrent(*display, *surface, *surface, context);
182 const eglw::EGLint makeCurrentError = egl.getError();