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

/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.h344 // textures
607 texture_state_t textures; member in struct:android::gl::ogles_context_t
/frameworks/base/core/jni/
H A Dandroid_opengl_GLES10.cpp411 /* void glDeleteTextures ( GLsizei n, const GLuint *textures ) */
420 GLuint *textures = (GLuint *) 0; local
425 _exceptionMessage = "textures == null";
443 textures = textures_base + offset;
447 (GLuint *)textures
460 /* void glDeleteTextures ( GLsizei n, const GLuint *textures ) */
470 GLuint *textures = (GLuint *) 0; local
472 textures = (GLuint *)getPointer(_env, textures_buf, &_array, &_remaining, &_bufferOffset);
479 if (textures == NULL) {
481 textures
973 GLuint *textures = (GLuint *) 0; local
1023 GLuint *textures = (GLuint *) 0; local
[all...]
H A Dandroid_opengl_GLES20.cpp778 /* void glDeleteTextures ( GLsizei n, const GLuint *textures ) */
787 GLuint *textures = (GLuint *) 0; local
792 _exceptionMessage = "textures == null";
810 textures = textures_base + offset;
814 (GLuint *)textures
827 /* void glDeleteTextures ( GLsizei n, const GLuint *textures ) */
837 GLuint *textures = (GLuint *) 0; local
839 textures = (GLuint *)getPointer(_env, textures_buf, &_array, &_remaining, &_bufferOffset);
846 if (textures == NULL) {
848 textures
1290 GLuint *textures = (GLuint *) 0; local
1340 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.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.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.cpp1337 void GLTrace_glDeleteTextures(GLsizei n, const GLuint* textures) { argument
1349 // copy argument textures
1353 arg_textures->add_intvalue((int)textures);
1358 glContext->hooks->gl.glDeleteTextures(n, textures);
1363 (void *) textures,
1998 void GLTrace_glGenTextures(GLsizei n, GLuint* textures) { argument
2010 // copy argument textures
2014 arg_textures->add_intvalue((int)textures);
2019 glContext->hooks->gl.glGenTextures(n, textures);
2024 (void *) textures,
10530 GLTrace_glExtGetTexturesQCOM(GLuint *textures, GLint maxTextures, GLint *numTextures) argument
[all...]

Completed in 346 milliseconds