Searched refs:m_backingStore (Results 1 - 25 of 32) sorted by relevance

12

/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/cairo/
H A DBackingStoreCairo.cpp64 ASSERT(m_backingStore);
67 cairo_set_source_surface(context, m_backingStore->cairoSurface(), 0, 0);
74 if (!m_backingStore)
76 m_backingStore = WidgetBackingStoreCairo::create(EwkView::toEvasObject(toAPI(m_webPageProxy)), size());
78 m_backingStore = createBackingStoreForGTK(m_webPageProxy->viewWidget(), size());
85 RefPtr<cairo_t> context(adoptRef(cairo_create(m_backingStore->cairoSurface())));
100 ASSERT(m_backingStore);
101 m_backingStore->scroll(scrollRect, scrollOffset);
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/cairo/
H A DTileCairo.cpp42 : m_backingStore(backingStore)
44 , m_rect(m_backingStore->tileRectForCoordinate(tileCoordinate))
81 m_backingStore->tileSize().width(),
82 m_backingStore->tileSize().height()));
98 context.scale(FloatSize(m_backingStore->contentsScale(), m_backingStore->contentsScale()));
99 m_backingStore->client()->tiledBackingStorePaint(&context, m_backingStore->mapToContents(rect));
H A DTileCairo.h65 TiledBackingStore* m_backingStore; member in class:WebCore::TileCairo
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/
H A DDrawingAreaProxyImpl.cpp103 if (!m_backingStore || isInAcceleratedCompositingMode())
107 if (!m_backingStore) {
114 m_backingStore->paint(context, rect);
115 unpaintedRegion.subtract(IntRect(IntPoint(), m_backingStore->size()));
151 if (!m_backingStore && m_layerTreeContext.isEmpty())
217 ASSERT(!m_backingStore);
225 if (m_backingStore && (m_backingStore->size() != updateInfo.viewSize || m_backingStore->deviceScaleFactor() != updateInfo.deviceScaleFactor))
226 m_backingStore
[all...]
H A DBackingStore.h102 OwnPtr<WebCore::WidgetBackingStore> m_backingStore; member in class:WebKit::BackingStore
H A DDrawingAreaProxyImpl.h121 OwnPtr<BackingStore> m_backingStore; member in class:WebKit::DrawingAreaProxyImpl
/macosx-10.9.5/WebCore-7537.78.1/Modules/indexeddb/
H A DIDBDatabaseBackendImpl.cpp54 : m_backingStore(backingStore)
59 const RefPtr<IDBBackingStore> m_backingStore; member in class:WebCore::CreateObjectStoreOperation
72 : m_backingStore(backingStore)
77 const RefPtr<IDBBackingStore> m_backingStore; member in class:WebCore::DeleteObjectStoreOperation
170 : m_backingStore(backingStore)
176 const RefPtr<IDBBackingStore> m_backingStore; member in class:WebCore::CreateIndexOperation
190 : m_backingStore(backingStore)
196 const RefPtr<IDBBackingStore> m_backingStore; member in class:WebCore::DeleteIndexOperation
250 : m_backingStore(backingStore)
264 const RefPtr<IDBBackingStore> m_backingStore; member in class:WebCore::GetOperation
296 const RefPtr<IDBBackingStore> m_backingStore; member in class:WebCore::PutOperation
344 const RefPtr<IDBBackingStore> m_backingStore; member in class:WebCore::OpenCursorOperation
373 const RefPtr<IDBBackingStore> m_backingStore; member in class:WebCore::CountOperation
398 const RefPtr<IDBBackingStore> m_backingStore; member in class:WebCore::DeleteRangeOperation
421 const RefPtr<IDBBackingStore> m_backingStore; member in class:WebCore::ClearOperation
[all...]
H A DIDBBackingStore.h168 void reset() { m_backingStore = 0; m_transaction = 0; }
176 IDBBackingStore* m_backingStore; member in class:WebCore::IDBBackingStore::Transaction
H A DIDBDatabaseBackendImpl.h108 RefPtr<IDBBackingStore> m_backingStore; member in class:WebCore::IDBDatabaseBackendImpl
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/qt/
H A DTileQt.cpp58 : m_backingStore(backingStore)
60 , m_rect(m_backingStore->tileRectForCoordinate(tileCoordinate))
100 m_backBuffer = new QPixmap(m_backingStore->tileSize().width(), m_backingStore->tileSize().height());
101 m_backBuffer->fill(m_backingStore->client()->tiledBackingStoreBackgroundColor());
124 context.scale(FloatSize(m_backingStore->contentsScale(), m_backingStore->contentsScale()));
125 m_backingStore->client()->tiledBackingStorePaint(&context, m_backingStore->mapToContents(rect));
H A DTileQt.h61 TiledBackingStore* m_backingStore; member in class:WebCore::TileQt
/macosx-10.9.5/WebKit-7537.78.2/blackberry/WebKitSupport/
H A DBackingStoreClient.h45 BackingStore* backingStore() const { return m_backingStore; }
87 BackingStore* m_backingStore; member in class:BlackBerry::WebKit::BackingStoreClient
H A DBackingStoreClient.cpp64 , m_backingStore(0)
68 m_backingStore = new BackingStore(m_webPage, this);
73 delete m_backingStore;
74 m_backingStore = 0;
/macosx-10.9.5/WebCore-7537.78.1/platform/image-decoders/
H A DImageDecoder.cpp166 m_backingStore.clear();
186 m_backingStore = other.m_backingStore;
187 m_bytes = m_backingStore.data();
197 if (!m_backingStore.tryReserveCapacity(backingStoreSize))
199 m_backingStore.resize(backingStoreSize);
200 m_bytes = m_backingStore.data();
H A DImageDecoder.h173 Vector<PixelData> m_backingStore;
174 PixelData* m_bytes; // The memory is backed by m_backingStore.
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/texmap/
H A DGraphicsLayerTextureMapper.cpp441 m_backingStore.clear();
444 if (!m_backingStore) {
445 m_backingStore = TextureMapperTiledBackingStore::create();
545 m_layer->setBackingStore(m_backingStore);
598 ASSERT(!m_backingStore);
601 ASSERT(m_backingStore);
610 ASSERT(dynamic_cast<TextureMapperTiledBackingStore*>(m_backingStore.get()));
612 TextureMapperTiledBackingStore* backingStore = static_cast<TextureMapperTiledBackingStore*>(m_backingStore.get());
H A DTextureMapperLayer.h143 PassRefPtr<BitmapTexture> texture() { return m_backingStore ? m_backingStore->texture() : 0; }
190 RefPtr<TextureMapperBackingStore> m_backingStore; member in class:WebCore::TextureMapperLayer
H A DGraphicsLayerTextureMapper.h164 RefPtr<TextureMapperBackingStore> m_backingStore; member in class:WebCore::GraphicsLayerTextureMapper
H A DTextureMapperLayer.cpp134 if (m_backingStore) {
137 m_backingStore->paintToTextureMapper(options.textureMapper, targetRect, transform, options.opacity);
139 m_backingStore->drawBorder(options.textureMapper, m_state.debugBorderColor, m_state.debugBorderWidth, targetRect, transform);
142 m_backingStore->drawRepaintCounter(options.textureMapper, m_state.repaintCount, m_state.debugBorderColor, targetRect, transform);
270 if (m_backingStore || m_state.masksToBounds || m_state.maskLayer || hasFilters())
662 m_backingStore = backingStore;
/macosx-10.9.5/WebKit2-7537.78.2/WebProcess/Plugins/
H A DPluginProxy.cpp207 if (!needsBackingStore() || !m_backingStore)
214 OwnPtr<WebCore::GraphicsContext> graphicsContext = m_backingStore->createGraphicsContext();
223 m_backingStore->paint(*graphicsContext, contentsScaleFactor(), dirtyRect.location(), dirtyRect);
276 m_pluginBackingStore = ShareableBitmap::createShareable(m_backingStore->size(), ShareableBitmap::SupportsAlpha);
595 if (!m_backingStore) {
596 m_backingStore = ShareableBitmap::create(backingStoreSize, ShareableBitmap::SupportsAlpha);
600 if (backingStoreSize != m_backingStore->size()) {
602 return m_backingStore->resize(backingStoreSize);
693 if (m_backingStore) {
695 OwnPtr<GraphicsContext> graphicsContext = m_backingStore
[all...]
/macosx-10.9.5/WebKit-7537.78.2/blackberry/Api/
H A DWebPage.cpp376 , m_backingStore(0) // Initialized by init.
474 m_backingStore = 0;
627 m_backingStore = m_backingStoreClient->backingStore();
1031 m_backingStore->d->setWebPageBackgroundColor(documentBackgroundColor());
1044 m_backingStore->d->renderAndBlitVisibleContentsImmediately();
1055 m_backingStore->d->suspendBackingStoreUpdates();
1056 m_backingStore->d->suspendScreenUpdates();
1059 m_backingStore->d->resetRenderQueue();
1060 m_backingStore->d->resetTiles();
1061 m_backingStore
[all...]
H A DWebPageCompositor.cpp166 m_webPage->m_backingStore->d->compositeContents(m_layerRenderer.get(), transform, documentSrcRect, !m_backgroundColor.hasAlpha());
242 BackingStore* backingStore = m_webPage->m_backingStore;
/macosx-10.9.5/WebKit2-7537.78.2/PluginProcess/
H A DPluginControllerProxy.cpp179 if (!m_backingStore)
188 OwnPtr<GraphicsContext> graphicsContext = m_backingStore->createGraphicsContext();
431 m_backingStore = ShareableBitmap::create(backingStoreHandle);
/macosx-10.9.5/WebKit-7537.78.2/blackberry/WebCoreSupport/
H A DChromeClientBlackBerry.cpp558 m_webPagePrivate->m_backingStore->d->repaint(updateRect, false /*contentChanged*/, immediate);
563 m_webPagePrivate->m_backingStore->d->repaint(updateRect, true /*contentChanged*/, immediate);
575 m_webPagePrivate->m_backingStore->d->slowScroll(delta, updateRect, immediate);
591 m_webPagePrivate->m_backingStore->d->scroll(delta, scrollViewRect, clipRect);
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/wince/
H A DImageWinCE.cpp46 return SharedBitmap::create(m_backingStore, m_size, hasAlpha());

Completed in 251 milliseconds

12