OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:webContext
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/WebKit/Source/platform/graphics/gpu/
SharedGraphicsContext3D.cpp
49
blink::WebGraphicsContext3D*
webContext
= 0;
53
webContext
= provider->context3d();
57
if (
webContext
&& grContext) {
58
blink::WebGraphicsContext3D* oldWebContext = m_context ? m_context->
webContext
() : 0;
60
if (
webContext
!= oldWebContext || grContext != oldGrContext)
/external/chromium_org/third_party/WebKit/Source/web/tests/
DrawingBufferTest.cpp
120
WebGraphicsContext3DForTests*
webContext
()
150
EXPECT_EQ(initialSize,
webContext
()->mostRecentlyProducedSize());
159
EXPECT_EQ(alternateSize,
webContext
()->mostRecentlyProducedSize());
168
EXPECT_EQ(initialSize,
webContext
()->mostRecentlyProducedSize());
174
EXPECT_EQ(initialSize,
webContext
()->mostRecentlyProducedSize());
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
GraphicsContext3D.cpp
62
GraphicsContext3D::GraphicsContext3D(PassOwnPtr<blink::WebGraphicsContext3D>
webContext
, bool preserveDrawingBuffer)
63
: m_impl(
webContext
.get())
64
, m_ownedWebContext(
webContext
)
263
OwnPtr<blink::WebGraphicsContext3D>
webContext
= adoptPtr(blink::Platform::current()->createOffscreenGraphicsContext3D(webAttributes));
264
if (!
webContext
)
267
return GraphicsContext3D::createGraphicsContextFromWebContext(
webContext
.release(), attrs.preserveDrawingBuffer);
276
PassRefPtr<GraphicsContext3D> GraphicsContext3D::createGraphicsContextFromWebContext(PassOwnPtr<blink::WebGraphicsContext3D>
webContext
, bool preserveDrawingBuffer)
278
RefPtr<GraphicsContext3D> context = adoptRef(new GraphicsContext3D(
webContext
, preserveDrawingBuffer));
[
all
...]
GraphicsContext3D.h
132
blink::WebGraphicsContext3D*
webContext
() const { return m_impl; }
Completed in 195 milliseconds