HomeSort by relevance Sort by last modified time
    Searched refs:textureId (Results 1 - 20 of 20) 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/libjingle/source/talk/app/webrtc/java/src/org/webrtc/
VideoRenderer.java 49 public int textureId;
75 int width, int height, Object textureObject, int textureId) {
81 this.textureId = textureId;
103 textureId = source.textureId;
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/gpu/
DrawingBuffer.cpp 247 newTexture.textureId = createColorTexture();
250 if (!newTexture.textureId)
264 m_context->framebufferTexture2DMultisampleEXT(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D, m_colorBuffer.textureId, 0, m_sampleCount);
266 m_context->framebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D, m_colorBuffer.textureId, 0);
268 m_context->copyTextureCHROMIUM(GL_TEXTURE_2D, m_colorBuffer.textureId, frontColorBufferMailbox->textureInfo.textureId, 0, GL_RGBA, GL_UNSIGNED_BYTE);
278 m_context->produceTextureDirectCHROMIUM(frontColorBufferMailbox->textureInfo.textureId, GL_TEXTURE_2D, frontColorBufferMailbox->mailbox.name);
348 m_context->bindTexture(GL_TEXTURE_2D, mailboxInfo->textureInfo.textureId);
375 m_context->deleteTexture(m_textureMailboxes[i]->textureInfo.textureId);
415 m_colorBuffer.textureId = createColorTexture()
    [all...]
DrawingBuffer.h 73 Platform3DObject textureId;
77 : textureId(0)
  /external/chromium_org/third_party/angle/src/libGLESv2/
FramebufferAttachment.h 53 bool isTextureWithId(GLuint textureId) const { return isTexture() && id() == textureId; }
Framebuffer.cpp 212 void Framebuffer::detachTexture(GLuint textureId)
218 if (attachment && attachment->isTextureWithId(textureId))
224 if (mDepthbuffer && mDepthbuffer->isTextureWithId(textureId))
229 if (mStencilbuffer && mStencilbuffer->isTextureWithId(textureId))
  /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/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/platform/graphics/
Canvas2DLayerBridgeTest.cpp 129 unsigned textureId = bridge->getBackingTexture();
130 EXPECT_EQ(textureId, 0u);
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
GLFrame.java 367 int textureId,
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/java/android/org/webrtc/
VideoRendererGui.java 417 oesTexture = frameFromQueue.textureId;
  /external/chromium_org/content/renderer/media/android/
webmediaplayer_android.cc 606 unsigned textureId = static_cast<unsigned>(
608 if (!copyVideoTextureToPlatformTexture(context3D, textureId, 0,
    [all...]

Completed in 511 milliseconds