/aosp14/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/ |
H A D | GLToolbox.java | 43 int[] textures = new int[] { texId }; in deleteTexture() local 45 GLES20.glDeleteTextures(1, textures, 0); in deleteTexture() 57 int[] textures = new int[1]; in generateTexture() local 58 GLES20.glGenTextures(1, textures, 0); in generateTexture() 60 return textures[0]; in generateTexture()
|
/aosp14/frameworks/base/media/mca/filterfw/native/core/ |
H A D | shader_program.cpp | 192 std::vector<GLuint> textures; in Process() local 204 textures.push_back(tex_id); in Process() 210 if (!RenderFrame(textures, targets)) { in Process() 218 std::vector<const GLTextureHandle*> textures(input.size()); in Process() local 219 std::copy(input.begin(), input.end(), textures.begin()); in Process() 220 return Process(textures, output); in Process() 421 for (unsigned i = 0; i < textures.size(); ++i) { in BindInputTextures() 428 glBindTexture(targets[i], textures[i]); in BindInputTextures() 429 LOG_FRAME("Binding texture %d", textures[i]); in BindInputTextures() 462 if (textures.size() > static_cast<unsigned>(MaxTextureUnits())) { in RenderFrame() [all …]
|
H A D | shader_program.h | 341 bool RenderFrame(const std::vector<GLuint>& textures, 444 bool BindInputTextures(const std::vector<GLuint>& textures,
|
/aosp14/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/glrenderer/ |
H A D | GLES20IdImpl.java | 25 public void glDeleteTextures(GL11 gl, int n, int[] textures, int offset) { in glDeleteTextures() argument 26 GLES20.glDeleteTextures(n, textures, offset); in glDeleteTextures()
|
H A D | GLId.java | 28 public void glDeleteTextures(GL11 gl, int n, int[] textures, int offset); in glDeleteTextures() argument
|
/aosp14/frameworks/base/opengl/java/javax/microedition/khronos/opengles/ |
H A D | GL10.java | 398 int[] textures, in glDeleteTextures() argument 404 java.nio.IntBuffer textures in glDeleteTextures() argument 516 int[] textures, in glGenTextures() argument 522 java.nio.IntBuffer textures in glGenTextures() argument
|
/aosp14/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/ |
H A D | GLDepthTestActivity.java | 224 int[] textures = new int[1]; in onSurfaceCreated() local 225 GLES20.glGenTextures(1, textures, 0); in onSurfaceCreated() 227 mTextureID = textures[0]; in onSurfaceCreated()
|
H A D | GLTextureViewActivity.java | 254 int[] textures = new int[1]; in loadTexture() local 257 glGenTextures(1, textures, 0); in loadTexture() 260 int texture = textures[0]; in loadTexture()
|
/aosp14/frameworks/base/opengl/java/android/opengl/ |
H A D | GLES10.java | 477 int[] textures, in glDeleteTextures() argument 485 java.nio.IntBuffer textures in glDeleteTextures() argument 641 int[] textures, in glGenTextures() argument 649 java.nio.IntBuffer textures in glGenTextures() argument
|
H A D | GLES20.java | 622 int[] textures, in glDeleteTextures() argument 630 java.nio.IntBuffer textures in glDeleteTextures() argument 799 int[] textures, in glGenTextures() argument 807 java.nio.IntBuffer textures in glGenTextures() argument
|
H A D | GLErrorWrapper.java | 207 public void glDeleteTextures(int n, int[] textures, int offset) { in glDeleteTextures() argument 209 mgl.glDeleteTextures(n, textures, offset); in glDeleteTextures() 213 public void glDeleteTextures(int n, IntBuffer textures) { in glDeleteTextures() argument 215 mgl.glDeleteTextures(n, textures); in glDeleteTextures() 347 public void glGenTextures(int n, int[] textures, int offset) { in glGenTextures() argument 349 mgl.glGenTextures(n, textures, offset); in glGenTextures() 353 public void glGenTextures(int n, IntBuffer textures) { in glGenTextures() argument 355 mgl.glGenTextures(n, textures); in glGenTextures()
|
H A D | GLLogWrapper.java | 1425 arg("textures", n, textures, offset); in glDeleteTextures() 1429 mgl.glDeleteTextures(n, textures, offset); in glDeleteTextures() 1436 arg("textures", n, textures); in glDeleteTextures() 1439 mgl.glDeleteTextures(n, textures); in glDeleteTextures() 1699 arg("textures", Arrays.toString(textures)); in glGenTextures() 1702 mgl.glGenTextures(n, textures, offset); in glGenTextures() 1704 returns(toString(n, FORMAT_INT, textures, offset)); in glGenTextures() 1709 public void glGenTextures(int n, IntBuffer textures) { in glGenTextures() argument 1712 arg("textures", textures.toString()); in glGenTextures() 1714 mgl.glGenTextures(n, textures); in glGenTextures() [all …]
|
/aosp14/frameworks/base/tests/UiBench/src/com/android/test/uibench/opengl/ |
H A D | ImageFlipRenderThread.java | 207 int[] textures = new int[1]; in loadTexture() local 210 glGenTextures(1, textures, 0); in loadTexture() 213 int texture = textures[0]; in loadTexture()
|
/aosp14/frameworks/base/core/jni/ |
H A D | android_opengl_GLES10.cpp | 744 GLuint *textures = (GLuint *) 0; in android_glDeleteTextures__I_3II() local 767 textures = textures_base + offset; in android_glDeleteTextures__I_3II() 771 (GLuint *)textures in android_glDeleteTextures__I_3II() 794 GLuint *textures = (GLuint *) 0; in android_glDeleteTextures__ILjava_nio_IntBuffer_2() local 809 if (textures == NULL) { in android_glDeleteTextures__ILjava_nio_IntBuffer_2() 815 (GLuint *)textures in android_glDeleteTextures__ILjava_nio_IntBuffer_2() 1265 GLuint *textures = (GLuint *) 0; in android_glGenTextures__I_3II() local 1292 (GLuint *)textures in android_glGenTextures__I_3II() 1315 GLuint *textures = (GLuint *) 0; in android_glGenTextures__ILjava_nio_IntBuffer_2() local 1330 if (textures == NULL) { in android_glGenTextures__ILjava_nio_IntBuffer_2() [all …]
|
H A D | android_opengl_GLES20.cpp | 1176 GLuint *textures = (GLuint *) 0; in android_glDeleteTextures__I_3II() local 1199 textures = textures_base + offset; in android_glDeleteTextures__I_3II() 1203 (GLuint *)textures in android_glDeleteTextures__I_3II() 1226 GLuint *textures = (GLuint *) 0; in android_glDeleteTextures__ILjava_nio_IntBuffer_2() local 1241 if (textures == NULL) { in android_glDeleteTextures__ILjava_nio_IntBuffer_2() 1247 (GLuint *)textures in android_glDeleteTextures__ILjava_nio_IntBuffer_2() 1749 GLuint *textures = (GLuint *) 0; in android_glGenTextures__I_3II() local 1776 (GLuint *)textures in android_glGenTextures__I_3II() 1799 GLuint *textures = (GLuint *) 0; in android_glGenTextures__ILjava_nio_IntBuffer_2() local 1814 if (textures == NULL) { in android_glGenTextures__ILjava_nio_IntBuffer_2() [all …]
|
H A D | com_google_android_gles_jni_GLImpl.cpp | 528 GLuint *textures = (GLuint *) 0; in android_glDeleteTextures__I_3II() local 551 textures = textures_base + offset; in android_glDeleteTextures__I_3II() 555 (GLuint *)textures in android_glDeleteTextures__I_3II() 578 GLuint *textures = (GLuint *) 0; in android_glDeleteTextures__ILjava_nio_IntBuffer_2() local 593 if (textures == NULL) { in android_glDeleteTextures__ILjava_nio_IntBuffer_2() 599 (GLuint *)textures in android_glDeleteTextures__ILjava_nio_IntBuffer_2() 1105 GLuint *textures = (GLuint *) 0; in android_glGenTextures__I_3II() local 1132 (GLuint *)textures in android_glGenTextures__I_3II() 1155 GLuint *textures = (GLuint *) 0; in android_glGenTextures__ILjava_nio_IntBuffer_2() local 1170 if (textures == NULL) { in android_glGenTextures__ILjava_nio_IntBuffer_2() [all …]
|
/aosp14/frameworks/base/media/tests/MediaDump/src/com/android/mediadump/ |
H A D | VideoDumpView.java | 552 int[] textures = new int[1]; in onSurfaceCreated() local 553 GLES20.glGenTextures(1, textures, 0); in onSurfaceCreated() 555 mTextureID = textures[0]; in onSurfaceCreated()
|
/aosp14/frameworks/base/opengl/java/com/google/android/gles_jni/ |
H A D | GLImpl.java | 294 int[] textures, in glDeleteTextures() argument 302 java.nio.IntBuffer textures in glDeleteTextures() argument 458 int[] textures, in glGenTextures() argument 466 java.nio.IntBuffer textures in glGenTextures() argument
|
/aosp14/frameworks/base/tools/aapt2/configuration/ |
H A D | ConfigurationParser.h | 116 std::vector<GlTexture> textures; member
|
H A D | ConfigurationParser.cpp | 256 &output_artifact.textures)) { in ToOutputArtifact()
|
/aosp14/frameworks/base/tools/aapt2/ |
H A D | ApkInfo.proto | 307 // Open GL textures format supported by the current application.
|
/aosp14/frameworks/base/cmds/bootanimation/ |
H A D | FORMAT.md | 100 To save on memory, textures may be trimmed by their background color. trim.txt sequentially lists
|