HomeSort by relevance Sort by last modified time
    Searched full:exposedrect (Results 1 - 10 of 10) sorted by null

  /external/webkit/Source/WebCore/plugins/qt/
PluginViewQt.cpp 118 m_view->paintUsingXPixmap(painter, option->exposedRect.toRect());
212 void PluginView::paintUsingImageSurfaceExtension(QPainter* painter, const IntRect& exposedRect)
240 imagePainter.fillRect(exposedRect, Qt::white);
253 imageExpose.x = exposedRect.x();
254 imageExpose.y = exposedRect.y();
255 imageExpose.width = exposedRect.width();
256 imageExpose.height = exposedRect.height();
264 exposeEvent.x = exposedRect.x();
265 exposeEvent.y = exposedRect.y();
266 exposeEvent.width = exposedRect.width()
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/x11/
NetscapePluginX11.cpp 228 IntRect exposedRect(dirtyRect);
229 exposedRect.intersect(m_frameRect);
230 exposedRect.move(-m_frameRect.x(), -m_frameRect.y());
231 exposeEvent.x = exposedRect.x();
232 exposeEvent.y = exposedRect.y();
236 exposeEvent.width = exposedRect.width();
237 exposeEvent.height = exposedRect.height();
247 painter->drawPixmap(QPoint(exposedRect.x(), exposedRect.y()), qtDrawable, exposedRect);
    [all...]
  /external/webkit/Source/WebCore/plugins/gtk/
PluginViewGtk.cpp 199 IntRect exposedRect(rect);
200 exposedRect.intersect(frameRect());
201 exposedRect.move(-frameRect().x(), -frameRect().y());
228 cairo_rectangle(cr.get(), exposedRect.x(), exposedRect.y(),
229 exposedRect.width(), exposedRect.height());
239 exposeEvent.x = exposedRect.x();
240 exposeEvent.y = exposedRect.y();
241 exposeEvent.width = exposedRect.x() + exposedRect.width(); // flash bug? it thinks width is the right in transparent mod
    [all...]
  /external/webkit/Source/WebKit/qt/tests/qgraphicswebview/
tst_qgraphicswebview.cpp 213 option.exposedRect = webView->geometry();
214 QImage img(option.exposedRect.width(), option.exposedRect.height(), QImage::Format_ARGB32_Premultiplied);
220 QCOMPARE(img.pixel(option.exposedRect.width() - 2, option.exposedRect.height() / 2), qRgba(255, 255, 255, 255));
221 painter.fillRect(option.exposedRect, Qt::black);
222 QCOMPARE(img.pixel(option.exposedRect.width() - 2, option.exposedRect.height() / 2), qRgba(0, 0, 0, 255));
225 QCOMPARE(img.pixel(option.exposedRect.width() - 2, option.exposedRect.height() / 2), qRgba(255, 255, 255, 255))
    [all...]
  /external/webkit/Source/WebCore/plugins/
PluginView.h 473 void paintUsingImageSurfaceExtension(QPainter* painter, const IntRect& exposedRect);
476 void paintUsingXPixmap(QPainter* painter, const QRect &exposedRect);
  /external/webkit/Source/WebKit/qt/WebCoreSupport/
PageClientQt.h 133 page->mainFrame()->render(painter, static_cast<QWebFrame::RenderLayer>(QWebFrame::AllLayers&(~QWebFrame::ContentsLayer)), options->exposedRect.toRect());
  /external/webkit/Source/WebCore/platform/graphics/qt/
MediaPlayerPrivateQt.cpp 628 opt.exposedRect = m_videoItem.data()->sceneBoundingRect();
629 opt.rect = opt.exposedRect.toRect();
GraphicsLayerQt.cpp 93 option.exposedRect = option.rect = maskPixmap.rect();
635 painter->fillRect(option->exposedRect, QColor(m_currentContent.backgroundColor));
641 drawLayerContent(painter, option->exposedRect.toRect());
    [all...]
  /external/webkit/Source/WebKit/qt/Api/
qgraphicswebview.cpp 292 page()->mainFrame()->d->renderFromTiledBackingStore(&context, option->exposedRect.toAlignedRect());
298 page()->mainFrame()->render(painter, d->overlay() ? QWebFrame::ContentsLayer : QWebFrame::AllLayers, option->exposedRect.toAlignedRect());
300 page()->mainFrame()->render(painter, QWebFrame::AllLayers, option->exposedRect.toRect());
  /external/webkit/Source/WebKit2/UIProcess/API/qt/
qgraphicswkview.cpp 104 page()->d->paint(painter, option->exposedRect.toAlignedRect());

Completed in 544 milliseconds