• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/WebKit2-7537.78.2/WebProcess/WebPage/

Lines Matching refs:m_layerTreeHost

51     if (m_layerTreeHost)
52 m_layerTreeHost->invalidate();
86 if (m_layerTreeHost) {
88 m_layerTreeHost->setNonCompositedContentsNeedDisplay();
100 if (m_layerTreeHost) {
102 m_layerTreeHost->setNonCompositedContentsNeedDisplayInRect(rect);
124 if (m_layerTreeHost) {
129 m_layerTreeHost->scrollNonCompositedContents(scrollRect);
182 if (m_layerTreeHost)
183 m_layerTreeHost->pageBackgroundTransparencyChanged();
193 if (m_layerTreeHost)
194 m_layerTreeHost->setLayerFlushSchedulingEnabled(!isFrozen);
208 if (m_layerTreeHost) {
213 m_layerTreeHost->forceRepaint();
217 m_layerTreeHost->setShouldNotifyAfterNextScheduledLayerFlush(false);
229 return m_layerTreeHost && m_layerTreeHost->forceRepaintAsync(callbackID);
234 if (m_layerTreeHost)
235 m_layerTreeHost->didInstallPageOverlay(pageOverlay);
240 if (m_layerTreeHost)
241 m_layerTreeHost->didUninstallPageOverlay(pageOverlay);
248 if (m_layerTreeHost) {
249 m_layerTreeHost->setPageOverlayNeedsDisplay(pageOverlay, rect);
258 if (m_layerTreeHost)
259 m_layerTreeHost->setPageOverlayOpacity(pageOverlay, value);
264 if (m_layerTreeHost && !m_layerTreeHost->pageOverlayShouldApplyFadeWhenPainting())
276 if (m_layerTreeHost)
278 } else if (!m_layerTreeHost)
307 ASSERT(m_layerTreeHost);
309 m_layerTreeHost->forceRepaint();
316 if (!m_layerTreeHost)
322 m_webPage->send(Messages::DrawingAreaProxy::EnterAcceleratedCompositingMode(m_backingStoreStateID, m_layerTreeHost->layerTreeContext()));
331 if (m_layerTreeHost)
332 return m_layerTreeHost->graphicsLayerFactory();
344 if (!m_layerTreeHost) {
356 m_layerTreeHost->setShouldNotifyAfterNextScheduledLayerFlush(true);
358 m_layerTreeHost->setRootCompositingLayer(graphicsLayer);
361 if (m_layerTreeHost) {
362 m_layerTreeHost->setRootCompositingLayer(0);
379 if (!m_layerTreeHost)
381 m_layerTreeHost->scheduleLayerFlush();
400 if (m_layerTreeHost) {
405 m_layerTreeHost->sizeDidChange(m_webPage->size());
445 if (!m_isPaintingSuspended && !m_layerTreeHost)
450 if (m_isPaintingSuspended || m_layerTreeHost) {
454 if (m_layerTreeHost) {
455 layerTreeContext = m_layerTreeHost->layerTreeContext();
461 m_layerTreeHost->setShouldNotifyAfterNextScheduledLayerFlush(false);
462 m_layerTreeHost->forceRepaint();
474 if (m_layerTreeHost)
487 if (m_layerTreeHost)
488 m_layerTreeHost->pauseRendering();
504 if (m_layerTreeHost)
505 m_layerTreeHost->resumeRendering();
525 ASSERT(!m_layerTreeHost);
527 m_layerTreeHost = LayerTreeHost::create(m_webPage);
529 m_layerTreeHost->setShouldNotifyAfterNextScheduledLayerFlush(true);
531 m_layerTreeHost->setRootCompositingLayer(graphicsLayer);
551 ASSERT(m_layerTreeHost);
553 m_layerTreeHost->invalidate();
554 m_layerTreeHost = nullptr;
601 ASSERT(!m_layerTreeHost);
625 ASSERT(!m_layerTreeHost);
643 if (m_layerTreeHost) {
677 ASSERT(!m_layerTreeHost);
691 if (m_layerTreeHost)
752 if (m_layerTreeHost)
753 m_layerTreeHost->didReceiveCoordinatedLayerTreeHostMessage(connection, decoder);
763 if (!m_layerTreeHost)
766 LayerTreeContext oldLayerTreeContext = m_layerTreeHost->layerTreeContext();
767 m_layerTreeHost->setLayerHostingMode(layerHostingMode);
769 if (m_layerTreeHost->layerTreeContext() != oldLayerTreeContext)
770 m_webPage->send(Messages::DrawingAreaProxy::UpdateAcceleratedCompositingMode(m_backingStoreStateID, m_layerTreeHost->layerTreeContext()));