Lines Matching refs:ogles_context_t
49 struct ogles_context_t;
54 ogles_context_t* getGlContext();
182 typedef void (*fetcher_t)(ogles_context_t*, GLfixed*, const GLvoid*);
213 void (*compileElements)(ogles_context_t*, vertex_t*, GLint, GLsizei);
214 void (*compileElement)(ogles_context_t*, vertex_t*, GLint);
219 void (*perspective)(ogles_context_t*c, vertex_t* v);
220 void (*clipVertex)(ogles_context_t* c, vertex_t* nv,
222 void (*clipEye)(ogles_context_t* c, vertex_t* nv,
262 GLfixed (*fog)(ogles_context_t* c, GLfixed z);
335 typedef void (*light_fct_t)(ogles_context_t*, vertex_t*);
336 void (*lightVertex)(ogles_context_t* c, vertex_t* v);
337 void (*lightTriangle)(ogles_context_t* c,
584 inline void setGlThreadSpecific(ogles_context_t *value) { in setGlThreadSpecific()
587 inline ogles_context_t* getGlThreadSpecific() { in getGlThreadSpecific()
588 return static_cast<ogles_context_t*>(__get_tls()[TLS_SLOT_OPENGL]); in getGlThreadSpecific()
592 inline void setGlThreadSpecific(ogles_context_t *value) { in setGlThreadSpecific()
595 inline ogles_context_t* getGlThreadSpecific() { in getGlThreadSpecific()
596 return static_cast<ogles_context_t*>(pthread_getspecific(gGLKey)); in getGlThreadSpecific()
602 typedef ogles_context_t* GL;
608 struct ogles_context_t { struct
634 static inline ogles_context_t* get() { in get() argument