/development/tools/emulator/opengl/system/GLESv2_enc/ |
H A D | gl2_ftable.h | 33 {"glCompressedTexSubImage2D", (void*)glCompressedTexSubImage2D},
|
H A D | gl2_client_context.h | 33 glCompressedTexSubImage2D_client_proc_t glCompressedTexSubImage2D; member in struct:gl2_client_context_t 242 virtual glCompressedTexSubImage2D_client_proc_t set_glCompressedTexSubImage2D(glCompressedTexSubImage2D_client_proc_t f) { glCompressedTexSubImage2D_client_proc_t retval = glCompressedTexSubImage2D; glCompressedTexSubImage2D = f; return retval;}
|
H A D | gl2_entry.cpp | 31 void glCompressedTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid* data); 358 void glCompressedTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid* data) function 361 ctx->glCompressedTexSubImage2D(ctx, target, level, xoffset, yoffset, width, height, format, imageSize, data);
|
/development/tools/emulator/opengl/system/GLESv1_enc/ |
H A D | gl_ftable.h | 66 {"glCompressedTexSubImage2D", (void*)glCompressedTexSubImage2D},
|
H A D | gl_client_context.h | 66 glCompressedTexSubImage2D_client_proc_t glCompressedTexSubImage2D; member in struct:gl_client_context_t 358 virtual glCompressedTexSubImage2D_client_proc_t set_glCompressedTexSubImage2D(glCompressedTexSubImage2D_client_proc_t f) { glCompressedTexSubImage2D_client_proc_t retval = glCompressedTexSubImage2D; glCompressedTexSubImage2D = f; return retval;}
|
H A D | gl_entry.cpp | 64 void glCompressedTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid* data); 639 void glCompressedTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid* data) function 642 ctx->glCompressedTexSubImage2D(ctx, target, level, xoffset, yoffset, width, height, format, imageSize, data);
|
/development/tools/emulator/opengl/tests/gles_android_wrapper/ |
H A D | gles_ftable.h | 76 {"glCompressedTexSubImage2D", (void *)glCompressedTexSubImage2D},
|
H A D | gles_dispatch.h | 79 glCompressedTexSubImage2D_t glCompressedTexSubImage2D; member in struct:gles_dispatch 351 glCompressedTexSubImage2D_t set_glCompressedTexSubImage2D(glCompressedTexSubImage2D_t f) { glCompressedTexSubImage2D_t retval = glCompressedTexSubImage2D; glCompressedTexSubImage2D = f; return retval;}
|
H A D | gles.cpp | 336 void glCompressedTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid *data) function 338 getDispatch()->glCompressedTexSubImage2D(target, level, xoffset, yoffset, width, height, format, imageSize, data);
|
/development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/ |
H A D | MatrixTrackingGL.java | 153 public void glCompressedTexSubImage2D(int target, int level, int xoffset, method in class:MatrixTrackingGL 156 mgl.glCompressedTexSubImage2D(target, level, xoffset, yoffset, width,
|
/development/ndk/platforms/android-4/include/GLES/ |
H A D | gl.h | 651 GL_API void GL_APIENTRY glCompressedTexSubImage2D (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid *data);
|
/development/ndk/platforms/android-5/include/GLES2/ |
H A D | gl2.h | 496 GL_APICALL void GL_APIENTRY glCompressedTexSubImage2D (GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid* data);
|