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

/external/webkit/Source/WebCore/platform/graphics/android/layers/
H A DCanvasTexture.h65 GLuint texture() { requireTexture(); return m_texture; }
82 GLuint m_texture; member in class:WebCore::CanvasTexture
H A DCanvasLayer.cpp70 m_texture->setHwAccelerated(false);
76 bool previousState = m_texture->hasValidTexture();
84 if (!m_texture->uploadImageBuffer(layer.m_canvas->buffer())) {
101 if (previousState != m_texture->hasValidTexture()) {
118 m_texture = CanvasTexture::getCanvasTexture(this);
123 if (!m_texture->hasValidTexture()) {
140 m_texture->setSize(IntSize());
142 m_texture->setSize(size);
201 m_texture->requireTexture();
202 if (!m_bitmap && m_texture
[all...]
H A DCanvasTexture.cpp106 if (!m_texture)
110 m_surfaceTexture = new android::GLConsumer(m_texture, false);
157 if (m_texture)
158 GLUtils::deleteTexture(&m_texture);
164 if (!m_texture)
165 glGenTextures(1, &m_texture);
203 , m_texture(0)
H A DCanvasLayer.h75 RefPtr<CanvasTexture> m_texture; member in class:WebCore::CanvasLayer
/external/webkit/Source/WebCore/platform/graphics/gtk/
H A DGraphicsContext3DGtk.cpp59 , m_texture(0)
72 ::glGenTextures(1, &m_texture);
73 ::glBindTexture(GL_TEXTURE_2D, m_texture);
126 ::glDeleteTextures(1, &m_texture);
/external/webkit/Source/WebCore/platform/graphics/texmap/
H A DTextureMapperNode.cpp114 TextureMapperCacheLock(BitmapTexture* texture) : m_texture(texture)
116 if (m_texture)
117 m_texture->lock();
121 if (m_texture)
122 m_texture->unlock();
126 RefPtr<BitmapTexture> m_texture; member in class:WebCore::TextureMapperCacheLock
271 if (m_texture)
275 m_texture = textureMapper->createTexture();
276 cache()->mark(m_texture.get());
420 m_texture
[all...]
H A DTextureMapperNode.h191 RefPtr<BitmapTexture> m_texture; member in class:WebCore::TextureMapperNode
/external/webkit/Source/WebCore/platform/graphics/mac/
H A 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/
H A DGraphicsContext3DQt.cpp264 GLuint m_texture; member in class:WebCore::GraphicsContext3DInternal
299 , m_texture(0)
431 glGenTextures(1, &m_texture);
432 glBindTexture(GraphicsContext3D::TEXTURE_2D, m_texture);
452 ::glDeleteTextures(1, &m_texture);
488 glBindTexture(GraphicsContext3D::TEXTURE_2D, m_texture);
511 framebufferTexture2D(GraphicsContext3D::FRAMEBUFFER, GraphicsContext3D::COLOR_ATTACHMENT0, GraphicsContext3D::TEXTURE_2D, m_texture, 0);
545 viewportGLWidget->drawTexture(rect, m_texture);
634 return m_internal->m_texture;
/external/webkit/Source/WebCore/platform/graphics/
H A DGraphicsContext3D.h476 Platform3DObject platformTexture() const { return m_texture; }
911 GC3Duint m_texture, m_compositorTexture; member in class:WebCore::GraphicsContext3D
/external/webkit/Source/WebCore/platform/graphics/opengl/
H A DGraphicsContext3DOpenGL.cpp236 ::glBindTexture(GL_TEXTURE_2D, m_texture);
238 ::glFramebufferTexture2DEXT(GL_FRAMEBUFFER_EXT, GL_COLOR_ATTACHMENT0_EXT, GL_TEXTURE_2D, m_texture, 0);

Completed in 166 milliseconds