Searched defs:textures (Results 1 - 17 of 17) 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.cpp191 // Get all required textures
192 std::vector<GLuint> textures; local
204 textures.push_back(tex_id);
210 if (!RenderFrame(textures, targets)) {
218 std::vector<const GLTextureHandle*> textures(input.size());
219 std::copy(input.begin(), input.end(), textures.begin());
220 return Process(textures, output);
419 bool ShaderProgram::BindInputTextures(const std::vector<GLuint>& textures, argument
421 for (unsigned i = 0; i < textures.size(); ++i) {
428 glBindTexture(targets[i], textures[
459 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/libs/hwui/tests/
H A Dnullgles.cpp47 void glGenTextures(GLsizei n, GLuint *textures) { argument
48 glGenCommon(n, textures);
184 void glDeleteTextures(GLsizei n, const GLuint *textures) {} argument
/frameworks/base/core/jni/
H A Dandroid_opengl_GLES10.cpp723 /* void glDeleteTextures ( GLsizei n, const GLuint *textures ) */
732 GLuint *textures = (GLuint *) 0; local
737 _exceptionMessage = "textures == null";
755 textures = textures_base + offset;
759 (GLuint *)textures
772 /* void glDeleteTextures ( GLsizei n, const GLuint *textures ) */
782 GLuint *textures = (GLuint *) 0; local
784 textures = (GLuint *)getPointer(_env, textures_buf, (jarray*)&_array, &_remaining, &_bufferOffset);
791 if (textures == NULL) {
793 textures
1229 GLuint *textures = (GLuint *) 0; local
1279 GLuint *textures = (GLuint *) 0; local
[all...]
H A Dandroid_opengl_GLES20.cpp1137 /* void glDeleteTextures ( GLsizei n, const GLuint *textures ) */
1146 GLuint *textures = (GLuint *) 0; local
1151 _exceptionMessage = "textures == null";
1169 textures = textures_base + offset;
1173 (GLuint *)textures
1186 /* void glDeleteTextures ( GLsizei n, const GLuint *textures ) */
1196 GLuint *textures = (GLuint *) 0; local
1198 textures = (GLuint *)getPointer(_env, textures_buf, (jarray*)&_array, &_remaining, &_bufferOffset);
1205 if (textures == NULL) {
1207 textures
1689 GLuint *textures = (GLuint *) 0; local
1739 GLuint *textures = (GLuint *) 0; local
[all...]
H A Dcom_google_android_gles_jni_GLImpl.cpp543 /* void glDeleteTextures ( GLsizei n, const GLuint *textures ) */
552 GLuint *textures = (GLuint *) 0; local
557 _exceptionMessage = "textures == null";
575 textures = textures_base + offset;
579 (GLuint *)textures
592 /* void glDeleteTextures ( GLsizei n, const GLuint *textures ) */
602 GLuint *textures = (GLuint *) 0; local
604 textures = (GLuint *)getPointer(_env, textures_buf, (jarray*)&_array, &_remaining, &_bufferOffset);
611 if (textures == NULL) {
613 textures
1105 GLuint *textures = (GLuint *) 0; local
1155 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 447 milliseconds