Searched defs:textureId (Results 1 - 8 of 8) sorted by relevance

/external/webrtc/talk/app/webrtc/java/android/org/webrtc/
H A DGlTextureFrameBuffer.java40 private final int textureId; field in class:GlTextureFrameBuffer
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);
H A DGlRectDrawer.java154 public void drawRgb(int textureId, float[] texMatrix, int x, int y, int width, int height) { argument
157 GLES20.glBindTexture(GLES20.GL_TEXTURE_2D, textureId);
H A DRendererCommon.java61 void drawRgb(int textureId, float[] texMatrix, int x, int y, int width, int height); argument
H A DSurfaceTextureHelper.java189 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);
188 convert(ByteBuffer buf, int width, int height, int stride, int textureId, float [] transformMatrix) argument
442 textureToYUV(ByteBuffer buf, int width, int height, int stride, int textureId, float [] transformMatrix) argument
/external/webrtc/talk/app/webrtc/java/src/org/webrtc/
H A DVideoRenderer.java54 public int textureId; field in class:VideoRenderer.I420Frame
91 I420Frame(int width, int height, int rotationDegree, int textureId, float[] samplingMatrix, argument
98 this.textureId = textureId;
140 frame.textureId = 0;
/external/deqp/modules/gles2/functional/
H A Des2fTextureStateQueryTests.cpp212 GLuint textureId = 0; local
213 glGenTextures(1, &textureId);
214 glBindTexture(m_textureTarget, textureId);
219 glDeleteTextures(1, &textureId);
/external/deqp/modules/glshared/
H A DglsTextureStateQueryTests.cpp790 glw::GLuint textureId = 0; local
794 gl.glGenTextures(1, &textureId);
795 gl.glBindTexture(m_target, textureId);
798 verifyStateObjectBoolean(result, gl, textureId, true, QUERY_ISTEXTURE);
800 gl.glDeleteTextures(1, &textureId);
803 verifyStateObjectBoolean(result, gl, textureId, false, QUERY_ISTEXTURE);
/external/robolectric/v3/runtime/
H A Dandroid-all-4.4_r1-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...

Completed in 148 milliseconds