Home
last modified time | relevance | path

Searched refs:textures (Results 1 – 12 of 12) sorted by relevance

/cts/tests/tests/effect/src/android/effect/cts/
DGLEnv.java77 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/opengl/src/android/opengl/cts/
DCompressedTextureSurfaceView.java256 int[] textures = new int[1]; in initFBO() local
257 GLES20.glGenTextures(1, textures, 0); in initFBO()
259 mColorTargetID = textures[0]; in initFBO()
268 GLES20.glGenFramebuffers(1, textures, 0); in initFBO()
269 mFrameBufferObjectID = textures[0]; in initFBO()
313 int[] textures = new int[1]; in onSurfaceCreated() local
314 GLES20.glGenTextures(1, textures, 0); in onSurfaceCreated()
316 mTextureID = textures[0]; in onSurfaceCreated()
/cts/tests/openglperf2/src/android/opengl2/cts/reference/
DGLGameActivity.java158 int[] textures = new int[1]; in loadTexture() local
159 GLES20.glGenTextures(1, textures, 0); in loadTexture()
160 int textureID = textures[0]; in loadTexture()
/cts/tests/tests/openglperf/src/android/openglperf/cts/
DTextureTestRenderer.java158 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/
DGLArrowSensorTestRenderer.java126 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/
DTextureRender.java165 int[] textures = new int[1]; in surfaceCreated() local
166 GLES20.glGenTextures(1, textures, 0); in surfaceCreated()
168 mTextureID = textures[0]; in surfaceCreated()
DEncodeVirtualDisplayWithCompositionTest.java1072 int[] textures = new int[1]; in init() local
1073 GLES20.glGenTextures(1, textures, 0); in init()
1075 mTextureId = textures[0]; in init()
1097 int[] textures = new int[] { in cleanup() local
1100 GLES20.glDeleteTextures(1, textures, 0); in cleanup()
DDecodeAccuracyTestBase.java1162 int[] textures = new int[1]; in eglSurfaceCreated() local
1163 GLES20.glGenTextures(1, textures, 0); in eglSurfaceCreated()
1165 textureID = textures[0]; in eglSurfaceCreated()
/cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/
DCtsMediaTextureRender.java169 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/mediastress/src/android/mediastress/cts/
DSurfaceTextureRenderer.java202 int[] textures = new int[1]; in onSurfaceCreated() local
203 GLES20.glGenTextures(1, textures, 0); in onSurfaceCreated()
205 mTextureID = textures[0]; in onSurfaceCreated()
/cts/tests/camera/src/android/hardware/cts/
DCameraGLTest.java785 int[] textures = new int[1]; in onSurfaceCreated() local
786 GLES20.glGenTextures(1, textures, 0); in onSurfaceCreated()
788 mTextureID = textures[0]; in onSurfaceCreated()
/cts/tests/tests/security/src/android/security/cts/
DStagefrightTest.java940 int[] textures = new int[1]; in getDummySurface() local
941 GLES20.glGenTextures(1, textures, 0); in getDummySurface()
942 GLES20.glBindTexture(GLES11Ext.GL_TEXTURE_EXTERNAL_OES, textures[0]); in getDummySurface()
955 SurfaceTexture surfaceTex = new SurfaceTexture(textures[0]); in getDummySurface()