HomeSort by relevance Sort by last modified time
    Searched refs:webContext (Results 1 - 17 of 17) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
WebGLContextObject.cpp 50 deleteObject(m_context->webContext());
58 return m_context ? m_context->webContext() : 0;
OESVertexArrayObject.cpp 75 arrayObject->deleteObject(m_context->webContext());
86 return m_context->webContext()->isVertexArrayOES(arrayObject->object());
95 m_context->webContext()->synthesizeGLError(GL_INVALID_OPERATION);
100 m_context->webContext()->bindVertexArrayOES(arrayObject->object());
105 m_context->webContext()->bindVertexArrayOES(0);
WebGLVertexArrayObjectOES.cpp 52 setObject(context()->webContext()->createVertexArrayOES());
68 context()->webContext()->deleteVertexArrayOES(object);
87 m_boundElementArrayBuffer->onDetached(context()->webContext());
102 state.bufferBinding->onDetached(context()->webContext());
117 m_boundElementArrayBuffer->onDetached(context()->webContext());
124 buffer->onDetached(context()->webContext());
WebGLRenderingContextBase.cpp 130 blink::WebGraphicsContext3D* candidateWGC3D = candidate->isContextLost() ? 0 : candidate->webContext();
134 blink::WebGraphicsContext3D* contextWGC3D = context->isContextLost() ? 0 : context->webContext();
588 webContext()->getIntegerv(GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS, &numCombinedTextureImageUnits);
593 webContext()->getIntegerv(GL_MAX_VERTEX_ATTRIBS, &numVertexAttribs);
597 webContext()->getIntegerv(GL_MAX_TEXTURE_SIZE, &m_maxTextureSize);
600 webContext()->getIntegerv(GL_MAX_CUBE_MAP_TEXTURE_SIZE, &m_maxCubeMapTextureSize);
603 webContext()->getIntegerv(GL_MAX_RENDERBUFFER_SIZE, &m_maxRenderbufferSize);
619 webContext()->viewport(0, 0, drawingBufferWidth(), drawingBufferHeight());
620 webContext()->scissor(0, 0, drawingBufferWidth(), drawingBufferHeight());
625 webContext()->setContextLostCallback(m_contextLostCallbackAdapter.get())
    [all...]
WebGLBuffer.cpp 44 setObject(ctx->webContext()->createBuffer());
WebGLDebugShaders.cpp 61 return m_context->ensureNotNull(m_context->webContext()->getTranslatedShaderSourceANGLE(shader->object()));
WebGLRenderbuffer.cpp 52 setObject(ctx->webContext()->createRenderbuffer());
WebGLShader.cpp 45 setObject(ctx->webContext()->createShader(type));
WebGLContextGroup.cpp 53 return (*it)->webContext();
WebGLDrawBuffers.cpp 82 m_context->webContext()->drawBuffersEXT(1, &value);
102 blink::WebGraphicsContext3D* context = webglContext->webContext();
WebGLProgram.cpp 46 setObject(ctx->webContext()->createProgram());
WebGLFramebuffer.cpp 266 setObject(ctx->webContext()->createFramebuffer());
305 attachmentObject->attach(context()->webContext(), attachmentPoint);
416 attachmentObject->onDetached(context()->webContext());
449 attachmentObject->unattach(context()->webContext(), attachmentType);
582 context()->webContext()->drawBuffersEXT(
WebGLTexture.cpp 54 setObject(ctx->webContext()->createTexture());
WebGLRenderingContextBase.h 331 blink::WebGraphicsContext3D* webContext() const { return m_drawingBuffer->context(); }
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/gpu/
DrawingBufferTest.cpp 217 WebGraphicsContext3DForTests* webContext()
251 EXPECT_EQ(initialSize, webContext()->mostRecentlyProducedSize());
260 EXPECT_EQ(alternateSize, webContext()->mostRecentlyProducedSize());
269 EXPECT_EQ(initialSize, webContext()->mostRecentlyProducedSize());
275 EXPECT_EQ(initialSize, webContext()->mostRecentlyProducedSize());
382 EXPECT_EQ(0u, webContext()->mostRecentlyWaitedSyncPoint());
385 EXPECT_EQ(0u, webContext()->mostRecentlyWaitedSyncPoint());
387 unsigned waitSyncPoint = webContext()->insertSyncPoint();
391 EXPECT_EQ(0u, webContext()->mostRecentlyWaitedSyncPoint());
396 EXPECT_EQ(waitSyncPoint, webContext()->mostRecentlyWaitedSyncPoint())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
Canvas2DLayerManagerTest.cpp 144 OwnPtr<blink::MockWebGraphicsContext3D> webContext = adoptPtr(new blink::MockWebGraphicsContext3D);
146 FakeCanvas2DLayerBridgePtr layer1(adoptRef(new FakeCanvas2DLayerBridge(webContext.get(), canvas1.release())));
158 FakeCanvas2DLayerBridgePtr layer2(adoptRef(new FakeCanvas2DLayerBridge(webContext.get(), canvas2.release())));
171 OwnPtr<blink::MockWebGraphicsContext3D> webContext = adoptPtr(new blink::MockWebGraphicsContext3D);
175 FakeCanvas2DLayerBridgePtr layer(adoptRef(new FakeCanvas2DLayerBridge(webContext.get(), canvas.release())));
188 OwnPtr<blink::MockWebGraphicsContext3D> webContext = adoptPtr(new blink::MockWebGraphicsContext3D);
192 FakeCanvas2DLayerBridgePtr layer(adoptRef(new FakeCanvas2DLayerBridge(webContext.get(), canvas.release())));
207 OwnPtr<blink::MockWebGraphicsContext3D> webContext = adoptPtr(new blink::MockWebGraphicsContext3D);
211 FakeCanvas2DLayerBridgePtr layer(adoptRef(new FakeCanvas2DLayerBridge(webContext.get(), canvas.release())));
221 OwnPtr<blink::MockWebGraphicsContext3D> webContext = adoptPtr(new blink::MockWebGraphicsContext3D)
    [all...]
Canvas2DLayerBridge.cpp 399 blink::WebGraphicsContext3D* webContext = context();
404 webContext->makeContextCurrent();
427 webContext->bindTexture(GL_TEXTURE_2D, mailboxInfo->m_image->getTexture()->getTextureHandle());
428 webContext->texParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
429 webContext->texParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
430 webContext->texParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
431 webContext->texParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
432 webContext->produceTextureCHROMIUM(GL_TEXTURE_2D, mailboxInfo->m_mailbox.name);
438 webContext->flush();
439 mailboxInfo->m_mailbox.syncPoint = webContext->insertSyncPoint()
    [all...]

Completed in 166 milliseconds