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

  /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/suite/cts/deviceTests/opengl/jni/graphics/
GLUtils.cpp 61 GLuint textureId = 0;
74 textureId = sEnv->CallStaticIntMethod(activityClass, loadTexture, sAssetManager, pathStr);
76 return textureId;
211 GLuint textureId = 0;
227 glGenTextures(1, &textureId);
228 glBindTexture(GL_TEXTURE_2D, textureId);
236 return textureId;
  /external/deqp/modules/gles2/functional/
es2fTextureStateQueryTests.cpp 212 GLuint textureId = 0;
213 glGenTextures(1, &textureId);
214 glBindTexture(m_textureTarget, textureId);
219 glDeleteTextures(1, &textureId);
  /external/deqp/modules/glshared/
glsTextureStateQueryTests.cpp 669 glw::GLuint textureId = 0;
673 gl.glGenTextures(1, &textureId);
674 gl.glBindTexture(m_target, textureId);
677 verifyStateObjectBoolean(result, gl, textureId, true, QUERY_ISTEXTURE);
679 gl.glDeleteTextures(1, &textureId);
682 verifyStateObjectBoolean(result, gl, textureId, false, QUERY_ISTEXTURE);
    [all...]
  /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];

Completed in 180 milliseconds