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

  /external/webkit/WebCore/platform/graphics/mac/
Canvas3DLayer.h 41 GLuint m_texture; member in namespace:CAOpenGLLayer
Canvas3DLayer.mm 47 m_texture = texture;
88 glBindTexture(GL_TEXTURE_2D, m_texture);
GraphicsContext3DMac.cpp 87 , m_texture(0)
149 ::glGenTextures(1, &m_texture);
150 ::glBindTexture(GL_TEXTURE_2D, m_texture);
167 ::glFramebufferTexture2DEXT(GL_FRAMEBUFFER_EXT, GL_COLOR_ATTACHMENT0_EXT, GL_TEXTURE_2D, m_texture, 0);
178 ::glDeleteTextures(1, &m_texture);
209 ::glBindTexture(GL_TEXTURE_2D, m_texture);
218 ::glFramebufferTexture2DEXT(GL_FRAMEBUFFER_EXT, GL_COLOR_ATTACHMENT0_EXT, GL_TEXTURE_2D, m_texture, 0);
    [all...]
  /external/webkit/WebKit/chromium/src/
GraphicsContext3D.cpp 137 unsigned int m_texture; member in class:WebCore::GraphicsContext3DInternal
357 , m_texture(0)
581 glDeleteTextures(1, &m_texture);
640 return m_texture;
672 if (!m_texture) {
674 m_texture = createTextureObject(target);
682 glBindTexture(target, m_texture);
692 glFramebufferTexture2DEXT(GL_FRAMEBUFFER_EXT, GL_COLOR_ATTACHMENT0_EXT, target, m_texture, 0);
    [all...]
  /external/webkit/WebCore/platform/graphics/
GraphicsContext3D.h 408 Platform3DObject platformTexture() const { return m_texture; }
634 GLuint m_texture; member in class:WebCore::GraphicsContext3D

Completed in 31 milliseconds