Lines Matching defs:m_context

581 	SharedPtr<GLES2Context>		m_context;
594 m_context = context;
600 m_context->display = m_display;
619 m_context->context = thread.egl.createContext(m_display, m_config, m_shared->context, attriblist);
620 thread.newMessage() << "End -- " << m_context->context << " = eglCreateContext()" << tcu::ThreadUtil::Message::End;
625 m_context->context = thread.egl.createContext(m_display, m_config, EGL_NO_CONTEXT, attriblist);
626 thread.newMessage() << "End -- " << m_context->context << " = eglCreateContext()" << tcu::ThreadUtil::Message::End;
630 TCU_CHECK(m_context->context != EGL_NO_CONTEXT);
640 SharedPtr<GLES2Context> m_context;
645 , m_context (contex)
647 modifyObject(SharedPtr<tcu::ThreadUtil::Object>(m_context));
654 thread.newMessage() << "Begin -- eglDestroyContext(" << m_context->display << ", " << m_context->context << ")" << tcu::ThreadUtil::Message::End;
655 EGLU_CHECK_CALL(thread.egl, destroyContext(m_context->display, m_context->context));
657 m_context->display = EGL_NO_DISPLAY;
658 m_context->context = EGL_NO_CONTEXT;
671 SharedPtr<GLES2Context> m_context;
678 , m_context (context)
680 if (m_context)
681 modifyObject(SharedPtr<tcu::ThreadUtil::Object>(m_context));
698 thread.context = m_context;
706 if (m_context)
709 thread.runtimeContext = m_context;
712 thread.newMessage() << "Begin -- eglMakeCurrent(" << m_display << ", " << m_surface->surface << ", " << m_surface->surface << ", " << m_context->context << ")" << tcu::ThreadUtil::Message::End;
713 EGLU_CHECK_CALL(thread.egl, makeCurrent(m_display, m_surface->surface, m_surface->surface, m_context->context));
718 thread.runtimeContext = m_context;