OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:m_colorbuffer
(Results
1 - 6
of
6
) sorted by null
/external/webkit/Source/WebCore/platform/graphics/gpu/mac/
DrawingBufferMac.mm
48
,
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/qt/
DrawingBufferQt.cpp
43
,
m_colorBuffer
(0)
57
m_colorBuffer
= context->createTexture();
58
context->bindTexture(GraphicsContext3D::TEXTURE_2D,
m_colorBuffer
);
95
return
m_colorBuffer
;
/external/webkit/Source/WebCore/platform/graphics/gtk/
DrawingBufferGtk.cpp
45
,
m_colorBuffer
(0)
57
m_colorBuffer
= context->createTexture();
58
context->bindTexture(GraphicsContext3D::TEXTURE_2D,
m_colorBuffer
);
88
return
m_colorBuffer
;
/external/webkit/Source/WebCore/platform/graphics/chromium/
DrawingBufferChromium.cpp
83
,
m_colorBuffer
(0)
100
m_colorBuffer
= generateColorTexture(context, size);
116
m_context->deleteTexture(
m_colorBuffer
);
142
static_cast<Extensions3DChromium*>(m_context->getExtensions())->copyTextureToParentTextureCHROMIUM(
m_colorBuffer
, parentTexture);
166
return
m_colorBuffer
;
181
desc->fPlatformTexture =
m_colorBuffer
;
/external/webkit/Source/WebCore/platform/graphics/gpu/
DrawingBuffer.h
70
Platform3DObject colorBuffer() const { return
m_colorBuffer
; }
126
Platform3DObject
m_colorBuffer
;
DrawingBuffer.cpp
63
m_context->deleteTexture(
m_colorBuffer
);
64
m_colorBuffer
= 0;
248
m_context->bindTexture(GraphicsContext3D::TEXTURE_2D,
m_colorBuffer
);
252
m_context->framebufferTexture2D(GraphicsContext3D::FRAMEBUFFER, GraphicsContext3D::COLOR_ATTACHMENT0, GraphicsContext3D::TEXTURE_2D,
m_colorBuffer
, 0);
Completed in 205 milliseconds