/device/generic/goldfish-opengl/system/egl/ |
D | ClientAPIExts.in | 188 (const GLshort *coords), 189 (coords)) 192 (const GLint *coords), 193 (coords)) 196 (const GLfloat *coords), 197 (coords)) 200 (const GLfixed *coords), 201 (coords))
|
/device/generic/opengl-transport/host/libs/virglrenderer/OpenGLESDispatch/ |
D | gles1_extensions.entries | 12 void glDrawTexsvOES(const GLshort *coords); 13 void glDrawTexivOES(const GLint *coords); 14 void glDrawTexxvOES(const GLfixed *coords); 16 void glDrawTexfvOES(const GLfloat *coords);
|
/device/generic/opengl-transport/host/libs/virglrenderer/GLESv1_dec/ |
D | gles1.attrib | 217 len coords (5 * sizeof(GLshort)) 220 len coords (5 * sizeof(GLint)) 223 len coords (5 * sizeof(GLfixed)) 226 len coords (5 * sizeof(GLfloat))
|
D | gles1.in | 176 GL_ENTRY(void, glDrawTexsvOES, const GLshort *coords) 177 GL_ENTRY(void, glDrawTexivOES, const GLint *coords) 178 GL_ENTRY(void, glDrawTexxvOES, const GLfixed *coords) 180 GL_ENTRY(void, glDrawTexfvOES, const GLfloat *coords)
|
/device/google/cuttlefish_common/host/frontend/vnc_server/ |
D | vnc_client_connection.cpp | 510 auto coords = CoordinatesForOrientation(orientation); in SetScreenOrientation() local 511 UpdateAccelerometer(coords.x, coords.y, coords.z); in SetScreenOrientation()
|
/device/generic/goldfish-opengl/tests/gles_android_wrapper/ |
D | gles.cpp | 811 void glDrawTexsvOES(const GLshort *coords) in glDrawTexsvOES() argument 813 getDispatch()->glDrawTexsvOES(coords); in glDrawTexsvOES() 816 void glDrawTexivOES(const GLint *coords) in glDrawTexivOES() argument 818 getDispatch()->glDrawTexivOES(coords); in glDrawTexivOES() 821 void glDrawTexxvOES(const GLfixed *coords) in glDrawTexxvOES() argument 823 getDispatch()->glDrawTexxvOES(coords); in glDrawTexxvOES() 831 void glDrawTexfvOES(const GLfloat *coords) in glDrawTexfvOES() argument 833 getDispatch()->glDrawTexfvOES(coords); in glDrawTexfvOES()
|
/device/generic/goldfish-opengl/system/include/GLES/ |
D | glext.h | 615 GL_API void GL_APIENTRY glDrawTexsvOES (const GLshort *coords); 616 GL_API void GL_APIENTRY glDrawTexivOES (const GLint *coords); 617 GL_API void GL_APIENTRY glDrawTexxvOES (const GLfixed *coords); 619 GL_API void GL_APIENTRY glDrawTexfvOES (const GLfloat *coords); 624 typedef void (GL_APIENTRYP PFNGLDRAWTEXSVOESPROC) (const GLshort *coords); 625 typedef void (GL_APIENTRYP PFNGLDRAWTEXIVOESPROC) (const GLint *coords); 626 typedef void (GL_APIENTRYP PFNGLDRAWTEXXVOESPROC) (const GLfixed *coords); 628 typedef void (GL_APIENTRYP PFNGLDRAWTEXFVOESPROC) (const GLfloat *coords);
|
/device/google/cuttlefish_common/guest/libs/eglwrapper/ |
D | gles1_wrapper_entry.cpp | 176 void glDrawTexsvOES(const GLshort* coords); 177 void glDrawTexivOES(const GLint* coords); 178 void glDrawTexxvOES(const GLfixed* coords); 180 void glDrawTexfvOES(const GLfloat* coords); 1315 void glDrawTexsvOES(const GLshort* coords) in glDrawTexsvOES() argument 1318 ctx->glDrawTexsvOES( coords); in glDrawTexsvOES() 1321 void glDrawTexivOES(const GLint* coords) in glDrawTexivOES() argument 1324 ctx->glDrawTexivOES( coords); in glDrawTexivOES() 1327 void glDrawTexxvOES(const GLfixed* coords) in glDrawTexxvOES() argument 1330 ctx->glDrawTexxvOES( coords); in glDrawTexxvOES() [all …]
|
D | gles1.in | 176 GL_ENTRY(void, glDrawTexsvOES, const GLshort *coords) 177 GL_ENTRY(void, glDrawTexivOES, const GLint *coords) 178 GL_ENTRY(void, glDrawTexxvOES, const GLfixed *coords) 180 GL_ENTRY(void, glDrawTexfvOES, const GLfloat *coords)
|
/device/generic/goldfish-opengl/system/GLESv1_enc/ |
D | gl_entry.cpp | 176 void glDrawTexsvOES(const GLshort* coords); 177 void glDrawTexivOES(const GLint* coords); 178 void glDrawTexxvOES(const GLfixed* coords); 180 void glDrawTexfvOES(const GLfloat* coords); 1321 void glDrawTexsvOES(const GLshort* coords) in glDrawTexsvOES() argument 1324 ctx->glDrawTexsvOES(ctx, coords); in glDrawTexsvOES() 1327 void glDrawTexivOES(const GLint* coords) in glDrawTexivOES() argument 1330 ctx->glDrawTexivOES(ctx, coords); in glDrawTexivOES() 1333 void glDrawTexxvOES(const GLfixed* coords) in glDrawTexxvOES() argument 1336 ctx->glDrawTexxvOES(ctx, coords); in glDrawTexxvOES() [all …]
|
D | gl_enc.cpp | 4739 void glDrawTexsvOES_enc(void *self , const GLshort* coords) in glDrawTexsvOES_enc() argument 4759 memcpy(ptr, coords, __size_coords);ptr += __size_coords; in glDrawTexsvOES_enc() 4766 void glDrawTexivOES_enc(void *self , const GLint* coords) in glDrawTexivOES_enc() argument 4786 memcpy(ptr, coords, __size_coords);ptr += __size_coords; in glDrawTexivOES_enc() 4793 void glDrawTexxvOES_enc(void *self , const GLfixed* coords) in glDrawTexxvOES_enc() argument 4813 memcpy(ptr, coords, __size_coords);ptr += __size_coords; in glDrawTexxvOES_enc() 4849 void glDrawTexfvOES_enc(void *self , const GLfloat* coords) in glDrawTexfvOES_enc() argument 4869 memcpy(ptr, coords, __size_coords);ptr += __size_coords; in glDrawTexfvOES_enc()
|