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

/frameworks/base/libs/rs/
H A DrsProgram.h43 Allocation **textures; member in struct:android::renderscript::Program::Hal::State
/frameworks/base/opengl/libagl/
H A Dtexture.cpp48 c->textures.packAlignment = 4;
49 c->textures.unpackAlignment = 4;
52 c->textures.defaultTexture = new EGLTextureObject();
53 c->textures.defaultTexture->incStrong(c);
57 bindTextureTmu(c, i, 0, c->textures.defaultTexture);
65 if (c->textures.ggl)
66 gglUninit(c->textures.ggl);
67 c->textures.defaultTexture->decStrong(c);
69 if (c->textures.tmu[i].texture)
70 c->textures
892 glGenTextures(GLsizei n, GLuint *textures) argument
903 glDeleteTextures(GLsizei n, const GLuint *textures) argument
[all...]
/frameworks/base/core/jni/
H A Dandroid_opengl_GLES10.cpp403 /* void glDeleteTextures ( GLsizei n, const GLuint *textures ) */
409 GLuint *textures = (GLuint *) 0; local
412 jniThrowException(_env, "java/lang/IllegalArgumentException", "textures == null");
426 textures = textures_base + offset;
430 (GLuint *)textures
440 /* void glDeleteTextures ( GLsizei n, const GLuint *textures ) */
446 GLuint *textures = (GLuint *) 0; local
448 textures = (GLuint *)getPointer(_env, textures_buf, &_array, &_remaining);
455 (GLuint *)textures
460 releasePointer(_env, _array, textures, JNI_FALS
875 GLuint *textures = (GLuint *) 0; local
916 GLuint *textures = (GLuint *) 0; local
[all...]
H A Dandroid_opengl_GLES20.cpp683 /* void glDeleteTextures ( GLsizei n, const GLuint *textures ) */
689 GLuint *textures = (GLuint *) 0; local
692 jniThrowException(_env, "java/lang/IllegalArgumentException", "textures == null");
706 textures = textures_base + offset;
710 (GLuint *)textures
720 /* void glDeleteTextures ( GLsizei n, const GLuint *textures ) */
726 GLuint *textures = (GLuint *) 0; local
728 textures = (GLuint *)getPointer(_env, textures_buf, &_array, &_remaining);
735 (GLuint *)textures
740 releasePointer(_env, _array, textures, JNI_FALS
1108 GLuint *textures = (GLuint *) 0; local
1149 GLuint *textures = (GLuint *) 0; local
[all...]
H A Dcom_google_android_gles_jni_GLImpl.cpp529 /* void glDeleteTextures ( GLsizei n, const GLuint *textures ) */
535 GLuint *textures = (GLuint *) 0; local
538 jniThrowException(_env, "java/lang/IllegalArgumentException", "textures == null");
552 textures = textures_base + offset;
556 (GLuint *)textures
566 /* void glDeleteTextures ( GLsizei n, const GLuint *textures ) */
572 GLuint *textures = (GLuint *) 0; local
574 textures = (GLuint *)getPointer(_env, textures_buf, &_array, &_remaining);
581 (GLuint *)textures
586 releasePointer(_env, _array, textures, JNI_FALS
1001 GLuint *textures = (GLuint *) 0; local
1042 GLuint *textures = (GLuint *) 0; local
[all...]
/frameworks/base/opengl/libs/GLES2_dbg/src/
H A Dapi.cpp836 void Debug_glDeleteTextures(GLsizei n, const GLuint* textures) argument
841 const GLuint* textures; member in struct:__anon1037
844 _c->glDeleteTextures(n, textures);
849 caller.textures = textures;
852 msg.set_arg1(ToInt(textures));
855 msg.mutable_data()->assign(reinterpret_cast<const char *>(textures), n * sizeof(GLuint));
1209 void Debug_glGenTextures(GLsizei n, GLuint* textures) argument
1214 GLuint* textures; member in struct:__anon1055
1218 _c->glGenTextures(n, textures);
[all...]
/frameworks/base/include/private/opengles/
H A Dgl_context.h344 // textures
607 texture_state_t textures; member in struct:android::gl::ogles_context_t
/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 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
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 DGLES20.java612 // C function void glDeleteTextures ( GLsizei n, const GLuint *textures )
616 int[] textures,
620 // C function void glDeleteTextures ( GLsizei n, const GLuint *textures )
624 java.nio.IntBuffer textures
789 // C function void glGenTextures ( GLsizei n, GLuint *textures )
793 int[] textures,
797 // C function void glGenTextures ( GLsizei n, GLuint *textures )
801 java.nio.IntBuffer textures
614 glDeleteTextures( int n, int[] textures, int offset ) argument
791 glGenTextures( int n, int[] textures, int offset ) argument
/frameworks/base/opengl/java/com/google/android/gles_jni/
H A DGLImpl.java286 // C function void glDeleteTextures ( GLsizei n, const GLuint *textures )
290 int[] textures,
294 // C function void glDeleteTextures ( GLsizei n, const GLuint *textures )
298 java.nio.IntBuffer textures
450 // C function void glGenTextures ( GLsizei n, GLuint *textures )
454 int[] textures,
458 // C function void glGenTextures ( GLsizei n, GLuint *textures )
462 java.nio.IntBuffer textures
288 glDeleteTextures( int n, int[] textures, int offset ) argument
452 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 1040 milliseconds