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

/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/glrenderer/
H A DGLId.java28 public void glDeleteTextures(GL11 gl, int n, int[] textures, int offset); argument
H A DGLES20IdImpl.java25 public void glDeleteTextures(GL11 gl, int n, int[] textures, int offset) { argument
26 GLES20.glDeleteTextures(n, textures, offset);
/frameworks/rs/
H A DrsProgram.h43 Allocation **textures; member in struct:android::renderscript::Program::Hal::State
/frameworks/base/media/mca/filterfw/native/core/
H A Dshader_program.cpp198 // Get all required textures
199 std::vector<GLuint> textures; local
211 textures.push_back(tex_id);
217 if (!RenderFrame(textures, targets)) {
225 std::vector<const GLTextureHandle*> textures(input.size());
226 std::copy(input.begin(), input.end(), textures.begin());
227 return Process(textures, output);
426 bool ShaderProgram::BindInputTextures(const std::vector<GLuint>& textures, argument
428 for (unsigned i = 0; i < textures.size(); ++i) {
435 glBindTexture(targets[i], textures[
466 RenderFrame(const std::vector<GLuint>& textures, const std::vector<GLenum>& targets) argument
[all...]
/frameworks/native/opengl/libagl/
H A Dtexture.cpp47 c->textures.packAlignment = 4;
48 c->textures.unpackAlignment = 4;
51 c->textures.defaultTexture = new EGLTextureObject();
52 c->textures.defaultTexture->incStrong(c);
56 bindTextureTmu(c, i, 0, c->textures.defaultTexture);
64 if (c->textures.ggl)
65 gglUninit(c->textures.ggl);
66 c->textures.defaultTexture->decStrong(c);
68 if (c->textures.tmu[i].texture)
69 c->textures
891 glGenTextures(GLsizei n, GLuint *textures) argument
902 glDeleteTextures(GLsizei n, const GLuint *textures) argument
[all...]
H A Dcontext.h348 // textures
611 texture_state_t textures; member in struct:android::gl::ogles_context_t
/frameworks/base/core/jni/
H A Dandroid_opengl_GLES10.cpp605 /* void glDeleteTextures ( GLsizei n, const GLuint *textures ) */
614 GLuint *textures = (GLuint *) 0; local
619 _exceptionMessage = "textures == null";
637 textures = textures_base + offset;
641 (GLuint *)textures
654 /* void glDeleteTextures ( GLsizei n, const GLuint *textures ) */
664 GLuint *textures = (GLuint *) 0; local
666 textures = (GLuint *)getPointer(_env, textures_buf, &_array, &_remaining, &_bufferOffset);
673 if (textures == NULL) {
675 textures
1111 GLuint *textures = (GLuint *) 0; local
1161 GLuint *textures = (GLuint *) 0; local
[all...]
H A Dandroid_opengl_GLES20.cpp1019 /* void glDeleteTextures ( GLsizei n, const GLuint *textures ) */
1028 GLuint *textures = (GLuint *) 0; local
1033 _exceptionMessage = "textures == null";
1051 textures = textures_base + offset;
1055 (GLuint *)textures
1068 /* void glDeleteTextures ( GLsizei n, const GLuint *textures ) */
1078 GLuint *textures = (GLuint *) 0; local
1080 textures = (GLuint *)getPointer(_env, textures_buf, &_array, &_remaining, &_bufferOffset);
1087 if (textures == NULL) {
1089 textures
1571 GLuint *textures = (GLuint *) 0; local
1621 GLuint *textures = (GLuint *) 0; local
[all...]
H A Dcom_google_android_gles_jni_GLImpl.cpp539 /* void glDeleteTextures ( GLsizei n, const GLuint *textures ) */
548 GLuint *textures = (GLuint *) 0; local
553 _exceptionMessage = "textures == null";
571 textures = textures_base + offset;
575 (GLuint *)textures
588 /* void glDeleteTextures ( GLsizei n, const GLuint *textures ) */
598 GLuint *textures = (GLuint *) 0; local
600 textures = (GLuint *)getPointer(_env, textures_buf, &_array, &_remaining, &_bufferOffset);
607 if (textures == NULL) {
609 textures
1101 GLuint *textures = (GLuint *) 0; local
1151 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 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.java616 // C function void glDeleteTextures ( GLsizei n, const GLuint *textures )
620 int[] textures,
624 // C function void glDeleteTextures ( GLsizei n, const GLuint *textures )
628 java.nio.IntBuffer textures
793 // C function void glGenTextures ( GLsizei n, GLuint *textures )
797 int[] textures,
801 // C function void glGenTextures ( GLsizei n, GLuint *textures )
805 java.nio.IntBuffer textures
618 glDeleteTextures( int n, int[] textures, int offset ) argument
795 glGenTextures( int n, int[] textures, int offset ) argument
/frameworks/base/opengl/java/com/google/android/gles_jni/
H A DGLImpl.java287 // C function void glDeleteTextures ( GLsizei n, const GLuint *textures )
291 int[] textures,
295 // C function void glDeleteTextures ( GLsizei n, const GLuint *textures )
299 java.nio.IntBuffer textures
451 // C function void glGenTextures ( GLsizei n, GLuint *textures )
455 int[] textures,
459 // C function void glGenTextures ( GLsizei n, GLuint *textures )
463 java.nio.IntBuffer textures
289 glDeleteTextures( int n, int[] textures, int offset ) argument
453 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
/frameworks/native/opengl/libs/GLES_trace/src/
H A Dgltrace_api.cpp1336 void GLTrace_glDeleteTextures(GLsizei n, const GLuint * textures) { argument
1348 // copy argument textures
1352 arg_textures->add_int64value((uintptr_t)textures);
1357 glContext->hooks->gl.glDeleteTextures(n, textures);
1362 (void *) textures,
1997 void GLTrace_glGenTextures(GLsizei n, GLuint * textures) { argument
2009 // copy argument textures
2013 arg_textures->add_int64value((uintptr_t)textures);
2018 glContext->hooks->gl.glGenTextures(n, textures);
2023 (void *) textures,
22832 GLTrace_glExtGetTexturesQCOM(GLuint * textures, GLint maxTextures, GLint * numTextures) argument
[all...]

Completed in 5404 milliseconds