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/libs/hwui/debug/
H A DNullGlesDriver.cpp52 void NullGlesDriver::glGenTextures_(GLsizei n, GLuint* textures) { argument
53 nullglGenCommon(n, textures);
/frameworks/base/tools/aapt2/configuration/
H A DConfigurationParser.h116 std::vector<GlTexture> textures; member in struct:aapt::configuration::OutputArtifact
/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.cpp50 c->textures.packAlignment = 4;
51 c->textures.unpackAlignment = 4;
54 c->textures.defaultTexture = new EGLTextureObject();
55 c->textures.defaultTexture->incStrong(c);
59 bindTextureTmu(c, i, 0, c->textures.defaultTexture);
67 if (c->textures.ggl)
68 gglUninit(c->textures.ggl);
69 c->textures.defaultTexture->decStrong(c);
71 if (c->textures.tmu[i].texture)
72 c->textures
880 glGenTextures(GLsizei n, GLuint *textures) argument
891 glDeleteTextures(GLsizei n, const GLuint *textures) argument
[all...]
H A Dcontext.h349 // textures
612 texture_state_t textures; member in struct:android::gl::ogles_context_t
/frameworks/base/core/jni/
H A Dandroid_opengl_GLES10.cpp769 /* void glDeleteTextures ( GLsizei n, const GLuint *textures ) */
778 GLuint *textures = (GLuint *) 0; local
783 _exceptionMessage = "textures == null";
801 textures = textures_base + offset;
805 (GLuint *)textures
818 /* void glDeleteTextures ( GLsizei n, const GLuint *textures ) */
828 GLuint *textures = (GLuint *) 0; local
833 _exceptionMessage = "textures == null";
836 textures = (GLuint *)getPointer(_env, textures_buf, (jarray*)&_array, &_remaining, &_bufferOffset);
843 if (textures
1299 GLuint *textures = (GLuint *) 0; local
1349 GLuint *textures = (GLuint *) 0; local
[all...]
H A Dandroid_opengl_GLES20.cpp1201 /* void glDeleteTextures ( GLsizei n, const GLuint *textures ) */
1210 GLuint *textures = (GLuint *) 0; local
1215 _exceptionMessage = "textures == null";
1233 textures = textures_base + offset;
1237 (GLuint *)textures
1250 /* void glDeleteTextures ( GLsizei n, const GLuint *textures ) */
1260 GLuint *textures = (GLuint *) 0; local
1265 _exceptionMessage = "textures == null";
1268 textures = (GLuint *)getPointer(_env, textures_buf, (jarray*)&_array, &_remaining, &_bufferOffset);
1275 if (textures
1783 GLuint *textures = (GLuint *) 0; local
1833 GLuint *textures = (GLuint *) 0; local
[all...]
H A Dcom_google_android_gles_jni_GLImpl.cpp578 /* void glDeleteTextures ( GLsizei n, const GLuint *textures ) */
587 GLuint *textures = (GLuint *) 0; local
592 _exceptionMessage = "textures == null";
610 textures = textures_base + offset;
614 (GLuint *)textures
627 /* void glDeleteTextures ( GLsizei n, const GLuint *textures ) */
637 GLuint *textures = (GLuint *) 0; local
642 _exceptionMessage = "textures == null";
645 textures = (GLuint *)getPointer(_env, textures_buf, (jarray*)&_array, &_remaining, &_bufferOffset);
652 if (textures
1164 GLuint *textures = (GLuint *) 0; local
1214 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

Completed in 506 milliseconds