HomeSort by relevance Sort by last modified time
    Searched refs:textureId (Results 1 - 19 of 19) 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);
RendererCommon.java 61 void drawRgb(int textureId, float[] texMatrix, int x, int y, int width, int height);
SurfaceViewRenderer.java 511 drawer.drawOes(frame.textureId, texMatrix, 0, 0, surfaceSize.x, surfaceSize.y);
VideoRendererGui.java 263 drawer.drawOes(pendingFrame.textureId, rotatedSamplingMatrix,
  /cts/tests/openglperf2/jni/graphics/
PerspectiveMeshNode.h 25 PerspectiveMeshNode(const Mesh* mesh, const GLuint textureId);
TexturedMeshNode.h 25 TexturedMeshNode(const Mesh* mesh, const GLuint textureId);
TexturedMeshNode.cpp 17 TexturedMeshNode::TexturedMeshNode(const Mesh* mesh, const GLuint textureId) :
18 MeshNode(mesh), mTextureId(textureId) {
PerspectiveMeshNode.cpp 19 PerspectiveMeshNode::PerspectiveMeshNode(const Mesh* mesh, const GLuint textureId) :
20 TexturedMeshNode(mesh, textureId) {
GLUtils.cpp 61 GLuint textureId = 0;
74 textureId = sEnv->CallStaticIntMethod(activityClass, loadTexture, sAssetManager, pathStr);
76 return textureId;
213 GLuint textureId = 0;
229 glGenTextures(1, &textureId);
230 glBindTexture(GL_TEXTURE_2D, textureId);
238 return textureId;
  /external/webrtc/talk/app/webrtc/java/src/org/webrtc/
VideoRenderer.java 54 public int textureId;
91 I420Frame(int width, int height, int rotationDegree, int textureId, float[] samplingMatrix,
98 this.textureId = textureId;
140 frame.textureId = 0;
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/transforms/
TexturePropertyAccessor.java 58 Integer textureId = (Integer) targetTexture.getValue();
66 textureId,
74 textureId,
  /cts/tests/tests/openglperf/src/android/openglperf/cts/
PlanetsRenderer.java 348 int[] textureId = new int[1];
356 GLES20.glGenTextures(1, textureId, 0);
359 GLES20.glBindTexture(GLES20.GL_TEXTURE_2D, textureId[0]);
379 return textureId[0];
  /external/deqp/modules/gles2/functional/
es2fTextureStateQueryTests.cpp 212 GLuint textureId = 0;
213 glGenTextures(1, &textureId);
214 glBindTexture(m_textureTarget, textureId);
219 glDeleteTextures(1, &textureId);
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
GLFrame.java 367 int textureId,
  /external/deqp/external/vulkancts/modules/vulkan/shaderrender/
vktShaderRender.hpp 395 deUint32 textureId);
  /external/deqp/modules/glshared/
glsTextureStateQueryTests.cpp 790 glw::GLuint textureId = 0;
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);
    [all...]

Completed in 232 milliseconds