Lines Matching refs:Context
73 class Context class
76 Context (ContextType ctxType_);
77 ~Context (void);
80 Context (const Context&);
81 Context& operator= (const Context&);
119 Context::Context (ContextType ctxType_) in Context() function in tcu::null::Context
242 Context::~Context (void) in ~Context()
246 void Context::addExtension (const char* name) in addExtension()
257 void setCurrentContext (Context* context) in setCurrentContext()
262 Context* getCurrentContext (void) in getCurrentContext()
264 return (Context*)s_currentCtx.get(); in getCurrentContext()
269 Context* const ctx = getCurrentContext(); in glGetError()
279 Context* const ctx = getCurrentContext(); in glGetIntegerv()
449 Context* const ctx = getCurrentContext(); in glGetString()
466 Context* const ctx = getCurrentContext(); in glGetStringi()
487 Context* const ctx = getCurrentContext(); in glCreateProgram()
493 Context* const ctx = getCurrentContext(); in glCreateShader()
516 Context* const ctx = getCurrentContext(); in glGenTextures()
527 Context* const ctx = getCurrentContext(); in glGenQueries()
538 Context* const ctx = getCurrentContext(); in glGenBuffers()
549 Context* const ctx = getCurrentContext(); in glGenRenderbuffers()
560 Context* const ctx = getCurrentContext(); in glGenFramebuffers()
571 Context* const ctx = getCurrentContext(); in glGenVertexArrays()
582 Context* const ctx = getCurrentContext(); in glGenSamplers()
593 Context* const ctx = getCurrentContext(); in glGenTransformFeedbacks()
604 Context* const ctx = getCurrentContext(); in glGenProgramPipelines()
615 Context* const ctx = getCurrentContext(); in glMapBufferRange()
639 Context* const ctx = getCurrentContext(); in glReadPixels()
698 Context* const ctx = getCurrentContext(); in glBindBuffer()
706 Context* const ctx = getCurrentContext(); in glDeleteBuffers()
744 m_context = new Context(m_ctxType); in RenderContext()