Searched defs:textures (Results 1 - 9 of 9) sorted by relevance

/frameworks/base/opengl/libagl/
H A Dtexture.cpp51 c->textures.packAlignment = 4;
52 c->textures.unpackAlignment = 4;
55 c->textures.defaultTexture = new EGLTextureObject();
56 c->textures.defaultTexture->incStrong(c);
60 bindTextureTmu(c, i, 0, c->textures.defaultTexture);
68 if (c->textures.ggl)
69 gglUninit(c->textures.ggl);
70 c->textures.defaultTexture->decStrong(c);
72 if (c->textures.tmu[i].texture)
73 c->textures
909 glGenTextures(GLsizei n, GLuint *textures) argument
920 glDeleteTextures(GLsizei n, const GLuint *textures) argument
[all...]
/frameworks/base/core/jni/
H A Dandroid_opengl_GLES10.cpp425 /* void glDeleteTextures ( GLsizei n, const GLuint *textures ) */
431 GLuint *textures = (GLuint *) 0; local
434 _env->ThrowNew(IAEClass, "textures == null");
448 textures = textures_base + offset;
452 (GLuint *)textures
462 /* void glDeleteTextures ( GLsizei n, const GLuint *textures ) */
468 GLuint *textures = (GLuint *) 0; local
470 textures = (GLuint *)getPointer(_env, textures_buf, &_array, &_remaining);
477 (GLuint *)textures
482 releasePointer(_env, _array, textures, JNI_FALS
897 GLuint *textures = (GLuint *) 0; local
938 GLuint *textures = (GLuint *) 0; local
[all...]
H A Dcom_google_android_gles_jni_GLImpl.cpp460 /* void glDeleteTextures ( GLsizei n, const GLuint *textures ) */
466 GLuint *textures = (GLuint *) 0; local
469 _env->ThrowNew(IAEClass, "textures == null");
483 textures = textures_base + offset;
487 (GLuint *)textures
497 /* void glDeleteTextures ( GLsizei n, const GLuint *textures ) */
503 GLuint *textures = (GLuint *) 0; local
505 textures = (GLuint *)getPointer(_env, textures_buf, &_array, &_remaining);
512 (GLuint *)textures
517 releasePointer(_env, _array, textures, JNI_FALS
932 GLuint *textures = (GLuint *) 0; local
973 GLuint *textures = (GLuint *) 0; local
[all...]
/frameworks/base/opengl/java/android/opengl/
H A DGLErrorWrapper.java207 public void glDeleteTextures(int n, int[] textures, int offset) { argument
209 mgl.glDeleteTextures(n, textures, offset);
213 public void glDeleteTextures(int n, IntBuffer textures) { argument
215 mgl.glDeleteTextures(n, textures);
347 public void glGenTextures(int n, int[] textures, int offset) { argument
349 mgl.glGenTextures(n, textures, offset);
353 public void glGenTextures(int n, IntBuffer textures) { argument
355 mgl.glGenTextures(n, textures);
H A DGLLogWrapper.java1422 public void glDeleteTextures(int n, int[] textures, int offset) { argument
1425 arg("textures", n, textures, offset);
1429 mgl.glDeleteTextures(n, textures, offset);
1433 public void glDeleteTextures(int n, IntBuffer textures) { argument
1436 arg("textures", n, textures);
1439 mgl.glDeleteTextures(n, textures);
1696 public void glGenTextures(int n, int[] textures, int offset) { argument
1699 arg("textures", Array
1709 glGenTextures(int n, IntBuffer textures) argument
[all...]
H A DGLES10.java473 // C function void glDeleteTextures ( GLsizei n, const GLuint *textures )
477 int[] textures,
481 // C function void glDeleteTextures ( GLsizei n, const GLuint *textures )
485 java.nio.IntBuffer textures
637 // C function void glGenTextures ( GLsizei n, GLuint *textures )
641 int[] textures,
645 // C function void glGenTextures ( GLsizei n, GLuint *textures )
649 java.nio.IntBuffer textures
475 glDeleteTextures( int n, int[] textures, int offset ) argument
639 glGenTextures( int n, int[] textures, int offset ) argument
/frameworks/base/include/private/opengles/
H A Dgl_context.h342 // textures
613 texture_state_t textures; member in struct:android::gl::ogles_context_t
/frameworks/base/opengl/java/com/google/android/gles_jni/
H A DGLImpl.java277 // C function void glDeleteTextures ( GLsizei n, const GLuint *textures )
281 int[] textures,
285 // C function void glDeleteTextures ( GLsizei n, const GLuint *textures )
289 java.nio.IntBuffer textures
441 // C function void glGenTextures ( GLsizei n, GLuint *textures )
445 int[] textures,
449 // C function void glGenTextures ( GLsizei n, GLuint *textures )
453 java.nio.IntBuffer textures
279 glDeleteTextures( int n, int[] textures, int offset ) argument
443 glGenTextures( int n, int[] textures, int offset ) argument
/frameworks/base/opengl/java/javax/microedition/khronos/opengles/
H A DGL10.java398 int[] textures,
404 java.nio.IntBuffer textures
516 int[] textures,
522 java.nio.IntBuffer textures
396 glDeleteTextures( int n, int[] textures, int offset ) argument
514 glGenTextures( int n, int[] textures, int offset ) argument

Completed in 104 milliseconds