Home
last modified time | relevance | path

Searched refs:m_colorBuffer (Results 1 – 6 of 6) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/gtk/
DDrawingBufferGtk.cpp45 , m_colorBuffer(0) in DrawingBuffer()
57 m_colorBuffer = context->createTexture(); in DrawingBuffer()
58 context->bindTexture(GraphicsContext3D::TEXTURE_2D, m_colorBuffer); in DrawingBuffer()
88 return m_colorBuffer; in platformColorBuffer()
/external/webkit/Source/WebCore/platform/graphics/chromium/
DDrawingBufferChromium.cpp83 , m_colorBuffer(0) in DrawingBuffer()
100 m_colorBuffer = generateColorTexture(context, size); in DrawingBuffer()
116 m_context->deleteTexture(m_colorBuffer); in ~DrawingBuffer()
142 …ium*>(m_context->getExtensions())->copyTextureToParentTextureCHROMIUM(m_colorBuffer, parentTexture… in publishToPlatformLayer()
166 return m_colorBuffer; in platformColorBuffer()
181 desc->fPlatformTexture = m_colorBuffer; in getGrPlatformSurfaceDesc()
/external/webkit/Source/WebCore/platform/graphics/gpu/qt/
DDrawingBufferQt.cpp43 , m_colorBuffer(0) in DrawingBuffer()
57 m_colorBuffer = context->createTexture(); in DrawingBuffer()
58 context->bindTexture(GraphicsContext3D::TEXTURE_2D, m_colorBuffer); in DrawingBuffer()
95 return m_colorBuffer; in platformColorBuffer()
/external/webkit/Source/WebCore/platform/graphics/gpu/mac/
DDrawingBufferMac.mm48 , m_colorBuffer(0)
70 m_colorBuffer = context->createTexture();
71 context->bindTexture(GraphicsContext3D::TEXTURE_2D, m_colorBuffer);
106 return m_colorBuffer;
/external/webkit/Source/WebCore/platform/graphics/gpu/
DDrawingBuffer.h70 Platform3DObject colorBuffer() const { return m_colorBuffer; } in colorBuffer()
126 Platform3DObject m_colorBuffer; variable
DDrawingBuffer.cpp63 m_context->deleteTexture(m_colorBuffer); in clear()
64 m_colorBuffer = 0; in clear()
248 m_context->bindTexture(GraphicsContext3D::TEXTURE_2D, m_colorBuffer); in reset()
252 …RAMEBUFFER, GraphicsContext3D::COLOR_ATTACHMENT0, GraphicsContext3D::TEXTURE_2D, m_colorBuffer, 0); in reset()