HomeSort by relevance Sort by last modified time
    Searched refs:textureId (Results 1 - 22 of 22) sorted by null

  /external/webrtc/talk/app/webrtc/java/android/org/webrtc/
GlTextureFrameBuffer.java 40 private final int textureId;
60 textureId = GlUtil.generateTexture(GLES20.GL_TEXTURE_2D);
73 GLES20.GL_TEXTURE_2D, textureId, 0);
101 GLES20.glBindTexture(GLES20.GL_TEXTURE_2D, textureId);
129 return textureId;
137 GLES20.glDeleteTextures(1, new int[] {textureId}, 0);
GlUtil.java 66 final int textureId = textureArray[0];
67 GLES20.glBindTexture(target, textureId);
73 return textureId;
SurfaceTextureHelper.java 189 int width, int height, int stride, int textureId, float [] transformMatrix) {
262 GLES20.glBindTexture(GLES11Ext.GL_TEXTURE_EXTERNAL_OES, textureId);
443 int width, int height, int stride, int textureId, float [] transformMatrix) {
444 if (textureId != oesTextureId)
445 throw new IllegalStateException("textureToByteBuffer called with unexpected textureId");
447 getYuvConverter().convert(buf, width, height, stride, textureId, transformMatrix);
GlRectDrawer.java 154 public void drawRgb(int textureId, float[] texMatrix, int x, int y, int width, int height) {
157 GLES20.glBindTexture(GLES20.GL_TEXTURE_2D, textureId);