Home
last modified time | relevance | path

Searched refs:m_texture (Results 1 – 11 of 11) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/android/layers/
DCanvasLayer.cpp70 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 …]
DCanvasTexture.cpp106 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()
DCanvasTexture.h65 GLuint texture() { requireTexture(); return m_texture; } in texture()
82 GLuint m_texture; variable
DCanvasLayer.h75 RefPtr<CanvasTexture> m_texture; variable
/external/webkit/Source/WebCore/platform/graphics/texmap/
DTextureMapperNode.cpp114 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 …]
DTextureMapperNode.h191 RefPtr<BitmapTexture> m_texture; variable
/external/webkit/Source/WebCore/platform/graphics/gtk/
DGraphicsContext3DGtk.cpp59 , 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/
DGraphicsContext3DMac.mm95 , 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/
DGraphicsContext3DQt.cpp264 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/
DGraphicsContext3D.h476 Platform3DObject platformTexture() const { return m_texture; } in platformTexture()
911 GC3Duint m_texture, m_compositorTexture; variable
/external/webkit/Source/WebCore/platform/graphics/opengl/
DGraphicsContext3DOpenGL.cpp236 ::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()