/external/webkit/Source/WebCore/platform/graphics/android/layers/ |
D | CanvasLayer.cpp | 70 m_texture->setHwAccelerated(false); in CanvasLayer() 76 bool previousState = m_texture->hasValidTexture(); in CanvasLayer() 84 if (!m_texture->uploadImageBuffer(layer.m_canvas->buffer())) { in CanvasLayer() 101 if (previousState != m_texture->hasValidTexture()) { in CanvasLayer() 118 m_texture = CanvasTexture::getCanvasTexture(this); in init() 123 if (!m_texture->hasValidTexture()) { in canvasChanged() 140 m_texture->setSize(IntSize()); in canvasResized() 142 m_texture->setSize(size); in canvasResized() 201 m_texture->requireTexture(); in drawGL() 202 if (!m_bitmap && m_texture->updateTexImage()) { in drawGL() [all …]
|
D | CanvasTexture.cpp | 106 if (!m_texture) in nativeWindow() 110 m_surfaceTexture = new android::GLConsumer(m_texture, false); in nativeWindow() 157 if (m_texture) in ~CanvasTexture() 158 GLUtils::deleteTexture(&m_texture); in ~CanvasTexture() 164 if (!m_texture) in requireTexture() 165 glGenTextures(1, &m_texture); in requireTexture() 203 , m_texture(0) in CanvasTexture()
|
D | CanvasTexture.h | 65 GLuint texture() { requireTexture(); return m_texture; } in texture() 82 GLuint m_texture; variable
|
D | CanvasLayer.h | 75 RefPtr<CanvasTexture> m_texture; variable
|
/external/webkit/Source/WebCore/platform/graphics/texmap/ |
D | TextureMapperNode.cpp | 114 TextureMapperCacheLock(BitmapTexture* texture) : m_texture(texture) in TextureMapperCacheLock() 116 if (m_texture) in TextureMapperCacheLock() 117 m_texture->lock(); in TextureMapperCacheLock() 121 if (m_texture) in ~TextureMapperCacheLock() 122 m_texture->unlock(); in ~TextureMapperCacheLock() 126 RefPtr<BitmapTexture> m_texture; member in WebCore::TextureMapperCacheLock 271 if (m_texture) in initializeTextureMapper() 275 m_texture = textureMapper->createTexture(); in initializeTextureMapper() 276 cache()->mark(m_texture.get()); in initializeTextureMapper() 420 m_texture->destroy(); in uploadTextureFromContent() [all …]
|
D | TextureMapperNode.h | 191 RefPtr<BitmapTexture> m_texture; variable
|
/external/webkit/Source/WebCore/platform/graphics/gtk/ |
D | GraphicsContext3DGtk.cpp | 59 , m_texture(0) in GraphicsContext3D() 72 ::glGenTextures(1, &m_texture); in GraphicsContext3D() 73 ::glBindTexture(GL_TEXTURE_2D, m_texture); in GraphicsContext3D() 126 ::glDeleteTextures(1, &m_texture); in ~GraphicsContext3D()
|
/external/webkit/Source/WebCore/platform/graphics/mac/ |
D | GraphicsContext3DMac.mm | 95 , m_texture(0) 168 ::glGenTextures(1, &m_texture); 169 ::glBindTexture(GL_TEXTURE_2D, m_texture); 228 ::glDeleteTextures(1, &m_texture);
|
/external/webkit/Source/WebCore/platform/graphics/qt/ |
D | GraphicsContext3DQt.cpp | 264 GLuint m_texture; member in WebCore::GraphicsContext3DInternal 299 , m_texture(0) in GraphicsContext3DInternal() 431 glGenTextures(1, &m_texture); in GraphicsContext3DInternal() 432 glBindTexture(GraphicsContext3D::TEXTURE_2D, m_texture); in GraphicsContext3DInternal() 452 ::glDeleteTextures(1, &m_texture); in ~GraphicsContext3DInternal() 488 glBindTexture(GraphicsContext3D::TEXTURE_2D, m_texture); in reshape() 511 …D::FRAMEBUFFER, GraphicsContext3D::COLOR_ATTACHMENT0, GraphicsContext3D::TEXTURE_2D, m_texture, 0); in reshape() 545 viewportGLWidget->drawTexture(rect, m_texture); in paint() 634 return m_internal->m_texture; in platformTexture()
|
/external/webkit/Source/WebCore/platform/graphics/ |
D | GraphicsContext3D.h | 476 Platform3DObject platformTexture() const { return m_texture; } in platformTexture() 911 GC3Duint m_texture, m_compositorTexture; variable
|
/external/webkit/Source/WebCore/platform/graphics/opengl/ |
D | GraphicsContext3DOpenGL.cpp | 236 ::glBindTexture(GL_TEXTURE_2D, m_texture); in reshape() 238 …FramebufferTexture2DEXT(GL_FRAMEBUFFER_EXT, GL_COLOR_ATTACHMENT0_EXT, GL_TEXTURE_2D, m_texture, 0); in reshape()
|