/cts/tests/tests/effect/src/android/effect/cts/ |
D | GLEnv.java | 77 int textures[] = new int[1]; in generateTexture() local 78 GLES20.glGenTextures(1, textures, 0); in generateTexture() 79 return textures[0]; in generateTexture() 90 int[] textures = new int[1]; in releaseTexture() local 91 textures[0] = texId; in releaseTexture() 92 GLES20.glDeleteTextures(1, textures, 0); in releaseTexture()
|
/cts/tests/tests/graphics/src/android/opengl/cts/ |
D | CompressedTextureSurfaceView.java | 282 int[] textures = new int[1]; in initFBO() local 283 GLES20.glGenTextures(1, textures, 0); in initFBO() 285 mColorTargetID = textures[0]; in initFBO() 294 GLES20.glGenFramebuffers(1, textures, 0); in initFBO() 295 mFrameBufferObjectID = textures[0]; in initFBO() 339 int[] textures = new int[1]; in onSurfaceCreated() local 340 GLES20.glGenTextures(1, textures, 0); in onSurfaceCreated() 342 mTextureID = textures[0]; in onSurfaceCreated()
|
/cts/tests/openglperf2/src/android/opengl2/cts/reference/ |
D | GLGameActivity.java | 157 int[] textures = new int[1]; in loadTexture() local 158 GLES20.glGenTextures(1, textures, 0); in loadTexture() 159 int textureID = textures[0]; in loadTexture()
|
/cts/tests/tests/openglperf/src/android/openglperf/cts/ |
D | TextureTestRenderer.java | 158 int[] textures = new int[1]; in onSurfaceCreated() local 159 gl.glGenTextures(1, textures, 0); in onSurfaceCreated() 161 mTextureID = textures[0]; in onSurfaceCreated()
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/renderers/ |
D | GLArrowSensorTestRenderer.java | 126 int[] textures = new int[1]; in onSurfaceCreated() local 127 gl.glGenTextures(1, textures, 0); in onSurfaceCreated() 128 mTextureID = textures[0]; in onSurfaceCreated()
|
/cts/tests/tests/media/src/android/media/cts/ |
D | TextureRender.java | 165 int[] textures = new int[1]; in surfaceCreated() local 166 GLES20.glGenTextures(1, textures, 0); in surfaceCreated() 168 mTextureID = textures[0]; in surfaceCreated()
|
D | EncodeVirtualDisplayWithCompositionTest.java | 955 int[] textures = new int[1]; in init() local 956 GLES20.glGenTextures(1, textures, 0); in init() 958 mTextureId = textures[0]; in init() 980 int[] textures = new int[] { in cleanup() local 983 GLES20.glDeleteTextures(1, textures, 0); in cleanup()
|
D | DecodeAccuracyTestBase.java | 940 int[] textures = new int[1]; in eglSurfaceCreated() local 941 GLES20.glGenTextures(1, textures, 0); in eglSurfaceCreated() 943 textureID = textures[0]; in eglSurfaceCreated()
|
/cts/tests/tests/mediastress/src/android/mediastress/cts/ |
D | SurfaceTextureRenderer.java | 202 int[] textures = new int[1]; in onSurfaceCreated() local 203 GLES20.glGenTextures(1, textures, 0); in onSurfaceCreated() 205 mTextureID = textures[0]; in onSurfaceCreated()
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/ |
D | CtsMediaTextureRender.java | 169 int[] textures = new int[1]; in surfaceCreated() local 170 GLES20.glGenTextures(1, textures, 0); in surfaceCreated() 172 mTextureID = textures[0]; in surfaceCreated()
|
/cts/tests/tests/security/src/android/security/cts/ |
D | StagefrightTest.java | 167 int[] textures = new int[1]; in getDummySurface() local 168 GLES20.glGenTextures(1, textures, 0); in getDummySurface() 169 GLES20.glBindTexture(GLES11Ext.GL_TEXTURE_EXTERNAL_OES, textures[0]); in getDummySurface() 182 SurfaceTexture surfaceTex = new SurfaceTexture(textures[0]); in getDummySurface()
|
/cts/tests/camera/src/android/hardware/cts/ |
D | CameraGLTest.java | 765 int[] textures = new int[1]; in onSurfaceCreated() local 766 GLES20.glGenTextures(1, textures, 0); in onSurfaceCreated() 768 mTextureID = textures[0]; in onSurfaceCreated()
|