Lines Matching full:static
66 static void * s_thread(void *data);
67 static __thread RenderingThread *m_tls;
69 static int s_createContext(uint32_t pid, uint32_t handle, uint32_t shareCtx, int version);
70 static int s_createSurface(uint32_t pid, uint32_t handle);
71 static int s_destroySurface(uint32_t pid, uint32_t handle);
72 static int s_destroyContext(uint32_t pid, uint32_t handle);
73 static int s_makeCurrent(uint32_t pid, uint32_t drawSurface, uint32_t readSurface, uint32_t ctx);
74 static void s_swapBuffers(uint32_t pid, uint32_t surface);
76 static void s_glTexParameteriv(GLenum target, GLenum param, const int *p);
77 static void s_glDrawTexfOES(GLfloat x, GLfloat y, GLfloat z, GLfloat w, GLfloat h);
78 static void s_glDrawTexsOES(GLshort x, GLshort y, GLshort z, GLshort w, GLshort h);
79 static void s_glDrawTexiOES(GLint x, GLint y, GLint z, GLint w, GLint h);
80 static void s_glDrawTexxOES(GLfixed x, GLfixed y, GLfixed z, GLfixed w, GLfixed h);
81 static void s_glDrawTexfvOES(const GLfloat *coords);
82 static void s_glDrawTexsvOES(const GLshort *coords);
83 static void s_glDrawTexivOES(const GLint *coords);
84 static void s_glDrawTexxvOES(const GLfixed *coords);
86 static void s_glActiveTexture(GLenum texture);
87 static void s_glBindTexture(GLenum target, GLuint texture);
88 static void s_glEnable(GLenum cap);
89 static void s_glDisable(GLenum cap);
90 static void s_glClientActiveTexture(GLenum texture);
91 static void s_glEnableClientState(GLenum cap);
92 static void s_glDisableClientState(GLenum cap);