Lines Matching defs:context

73 	EGLContext		context			= EGL_NO_CONTEXT;
82 context = egl.createContext(display, config, EGL_NO_CONTEXT, attribList);
84 TCU_CHECK(context);
86 return context;
364 bool testNativeWindow (TestLog& log, eglu::NativeDisplay& nativeDisplay, eglu::NativeWindow& nativeWindow, EGLDisplay display, EGLContext context, EGLConfig config, const glw::Functions& gl, bool renderColor, int waitFrames)
381 EGLU_CHECK_CALL(egl, makeCurrent(display, *surface, *surface, context));
413 bool testNativePixmap (TestLog& log, eglu::NativeDisplay& nativeDisplay, eglu::NativePixmap& nativePixmap, int width, int height, EGLDisplay display, EGLContext context, EGLConfig config, const glw::Functions& gl, bool renderColor)
428 EGLU_CHECK_CALL(egl, makeCurrent(display, *surface, *surface, context));
458 bool testNativePixmapCopy (TestLog& log, const Library& egl, eglu::NativePixmap& nativePixmap, int width, int height, EGLDisplay display, EGLContext context, EGLConfig config, const glw::Functions& gl, bool renderColor)
472 EGLU_CHECK_CALL(egl, makeCurrent(display, *surface, *surface, context));
558 eglu::UniqueContext context (egl, display, createGLES2Context(egl, display, config));
569 if (!testNativeWindow(m_testCtx.getLog(), m_eglTestCtx.getNativeDisplay(), *nativeWindow, display, *context, config, gl, m_render, waitFrames))
579 if (!testNativePixmap(m_testCtx.getLog(), m_eglTestCtx.getNativeDisplay(), *nativePixmap, width, height, display, *context, config, gl, m_render))
589 if (!testNativePixmapCopy(m_testCtx.getLog(), egl, *nativePixmap, width, height, display, *context, config, gl, m_render))