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

  /cts/suite/cts/deviceTests/opengl/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;
211 GLuint textureId = 0;
227 glGenTextures(1, &textureId);
228 glBindTexture(GL_TEXTURE_2D, textureId);
236 return textureId;
  /external/chromium_org/ui/android/java/src/org/chromium/ui/gl/
SurfaceTexturePlatformWrapper.java 24 private static SurfaceTexture create(int textureId) {
25 return new SurfaceTexture(textureId);
29 private static SurfaceTexture createSingleBuffered(int textureId) {
31 return new SurfaceTexture(textureId, true);
  /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,
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/gpu/
DrawingBuffer.cpp 233 newTexture.textureId = createColorTexture();
236 if (!newTexture.textureId)
250 m_context->framebufferTexture2DMultisampleEXT(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D, m_colorBuffer.textureId, 0, m_sampleCount);
252 m_context->framebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D, m_colorBuffer.textureId, 0);
254 m_context->copyTextureCHROMIUM(GL_TEXTURE_2D, m_colorBuffer.textureId, frontColorBufferMailbox->textureInfo.textureId, 0, GL_RGBA, GL_UNSIGNED_BYTE);
264 m_context->bindTexture(GL_TEXTURE_2D, frontColorBufferMailbox->textureInfo.textureId);
329 m_context->bindTexture(GL_TEXTURE_2D, mailboxInfo->textureInfo.textureId);
356 m_context->deleteTexture(m_textureMailboxes[i]->textureInfo.textureId);
402 m_colorBuffer.textureId = createColorTexture()
    [all...]
DrawingBuffer.h 76 Platform3DObject textureId;
80 : textureId(0)
  /external/chromium_org/third_party/angle/tests/angle_tests/
MaxTextureSizeTest.cpp 217 GLuint textureId = 0;
219 glGenTextures(1, &textureId);
220 glBindTexture(GL_TEXTURE_2D, textureId);
236 glFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D, textureId, 0);
277 glDeleteTextures(1, &textureId);
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
Canvas2DLayerBridgeTest.cpp 130 unsigned textureId = bridge->getBackingTexture();
131 EXPECT_EQ(textureId, 0u);
  /external/deqp/modules/gles3/functional/
es3fTextureStateQueryTests.cpp 210 GLuint textureId = 0;
211 glGenTextures(1, &textureId);
212 glBindTexture(m_textureTarget, textureId);
215 checkBooleans(glIsTexture(textureId), GL_TRUE);
217 glDeleteTextures(1, &textureId);
220 checkBooleans(glIsTexture(textureId), GL_FALSE);
241 GLuint textureId = 0;
242 glGenTextures(1, &textureId);
243 glBindTexture(m_textureTarget, textureId);
248 glDeleteTextures(1, &textureId);
    [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];
  /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/chromium_org/third_party/WebKit/Source/web/
WebMediaPlayerClientImpl.cpp 410 unsigned textureId = static_cast<unsigned>((m_bitmap.getTexture())->getTextureHandle());
411 if (!m_webMediaPlayer->copyVideoTextureToPlatformTexture(context3D, textureId, 0, GL_RGBA, GL_UNSIGNED_BYTE, true, false))
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
GLFrame.java 367 int textureId,

Completed in 1452 milliseconds