HomeSort by relevance Sort by last modified time
    Searched full:pixmap (Results 1 - 25 of 203) sorted by null

1 2 3 4 5 6 7 8 9

  /external/webkit/Source/WebCore/platform/graphics/qt/
ImageQt.cpp 58 QPixmap pixmap; local
60 pixmap = QWebSettings::webGraphic(QWebSettings::MissingImageGraphic);
62 pixmap = QWebSettings::webGraphic(QWebSettings::MissingPluginGraphic);
64 pixmap = QWebSettings::webGraphic(QWebSettings::DefaultFrameIconGraphic);
66 pixmap = QWebSettings::webGraphic(QWebSettings::TextAreaSizeGripCornerGraphic);
68 pixmap = QWebSettings::webGraphic(QWebSettings::DeleteButtonGraphic);
70 pixmap = QWebSettings::webGraphic(QWebSettings::InputSpeechButtonGraphic);
72 pixmap = QWebSettings::webGraphic(QWebSettings::SearchCancelButtonGraphic);
74 pixmap = QWebSettings::webGraphic(QWebSettings::SearchCancelButtonPressedGraphic);
76 return pixmap;
    [all...]
StillImageQt.h 37 static PassRefPtr<StillImage> create(const QPixmap& pixmap)
39 return adoptRef(new StillImage(pixmap));
42 static PassRefPtr<StillImage> createForRendering(const QPixmap* pixmap)
44 return adoptRef(new StillImage(pixmap));
57 StillImage(const QPixmap& pixmap);
58 StillImage(const QPixmap* pixmap);
TextureMapperQt.cpp 36 qFatal("Destroying an active pixmap");
74 const QPixmap* pixmap = image->nativeImageForCurrentFrame(); local
75 if (!pixmap)
77 BitmapTexture::reset(pixmap->size(), !pixmap->hasAlphaChannel());
78 m_pixmap = *pixmap;
139 QPixmap pixmap = textureQt.m_pixmap; local
145 QPixmap intermediatePixmap(pixmap.size());
149 maskPainter.drawPixmap(0, 0, pixmap);
151 maskPainter.drawPixmap(QRect(0, 0, pixmap.width(), pixmap.height()), mask->m_pixmap, mask->sourceRect())
    [all...]
PatternQt.cpp 36 QPixmap* pixmap = tileImage()->nativeImageForCurrentFrame(); local
37 if (!pixmap)
41 QBrush brush(*pixmap);
StillImageQt.cpp 39 StillImage::StillImage(const QPixmap& pixmap)
40 : m_pixmap(new QPixmap(pixmap))
44 StillImage::StillImage(const QPixmap* pixmap)
45 : m_pixmap(pixmap)
TransparencyLayer.h 49 : pixmap(rect.width(), rect.height())
55 pixmap.fill(Qt::transparent);
56 painter.begin(&pixmap);
70 QPixmap pixmap; member in struct:WebCore::TransparencyLayer
TileQt.cpp 41 static QPixmap* pixmap; local
42 if (!pixmap) {
43 pixmap = new QPixmap(checkerSize, checkerSize);
44 QPainter painter(pixmap);
55 return *pixmap;
GraphicsLayerQt.cpp 81 // (b) QGraphicsOpacityEffect detaches the pixmap, which is inefficient on OpenGL.
89 // We need to do this so the pixmap would have hasAlpha().
101 // We have to use another intermediate pixmap, to make sure the mask applies only to this item
103 QPixmap pixmap(srcPixmap.size());
104 pixmap.fill(Qt::transparent);
106 if (pixmap.isNull())
109 QPainter pixmapPainter(&pixmap);
120 painter->drawPixmap(offset, pixmap);
239 QPixmap pixmap; member in struct:WebCore::GraphicsLayerQtImpl::ContentData
417 QPixmap pixmap; local
    [all...]
  /external/webkit/Source/WebKit/qt/tests/hybridPixmap/
test.html 10 var pxm = myWidget.pixmap;
24 myWidget.compare(obj.toString(),"[Qt Native Pixmap "+obj.width+","+obj.height+"]");
25 myWidget.compare(String(pxm),"[Qt Native Pixmap "+pxm.width+","+pxm.height+"]");
53 img2.src = myWidget.pixmap.toDataUrl();
55 myWidget.pixmap = img;
widget.h 38 Q_PROPERTY(QPixmap pixmap READ pixmap WRITE setPixmap)
45 QPixmap pixmap() const;
widget.cpp 48 QCOMPARE(ui->lbl1->pixmap()->size(), ui->lbl2->size());
49 QCOMPARE(ui->lbl3->size(), ui->lbl4->pixmap()->size());
59 QPixmap Widget::pixmap() const function in class:Widget
113 emit imageSignal(ui->lbl4->pixmap()->toImage());
  /external/webkit/Source/WebCore/platform/graphics/gtk/
GraphicsContext3DInternal.h 27 typedef unsigned long Pixmap;
44 GraphicsContext3DInternal(GLXContext, Pixmap, GLXPixmap);
52 Pixmap m_pixmap;
GraphicsContext3DInternal.cpp 179 Pixmap pixmap = XCreatePixmap(sharedDisplay(), DefaultRootWindow(sharedDisplay()), 1, 1, visualInfo->depth); local
180 if (!pixmap) {
185 GLXPixmap glxPixmap = glXCreateGLXPixmap(sharedDisplay(), visualInfo, pixmap);
187 XFreePixmap(sharedDisplay(), pixmap); local
192 return new GraphicsContext3DInternal(context, pixmap, glxPixmap);
203 GraphicsContext3DInternal::GraphicsContext3DInternal(GLXContext context, Pixmap pixmap, GLXPixmap glxPixmap)
206 , m_pixmap(pixmap)
  /external/webkit/Source/WebKit/qt/examples/platformplugin/
WebNotificationPresenter.cpp 42 QPixmap pixmap; local
43 if (data->iconData().length() && pixmap.loadFromData(data->iconData())) {
45 label->setPixmap(pixmap);
  /external/webkit/Tools/DumpRenderTree/gtk/
PixelDumpSupportGtk.cpp 44 GdkPixmap* pixmap = gtk_widget_get_snapshot(viewContainer, 0); local
45 gdk_pixmap_get_size(pixmap, &width, &height);
55 gdk_cairo_set_source_pixmap(context, pixmap, 0, 0);
57 g_object_unref(pixmap);
  /external/webkit/Source/WebKit2/UIProcess/gtk/
ChunkedUpdateDrawingAreaProxyGtk.cpp 80 RefPtr<cairo_surface_t> pixmap(updateChunk->createImage());
81 if (cairo_surface_status(pixmap.get()) != CAIRO_STATUS_SUCCESS)
87 cairo_set_source_surface(cr.get(), pixmap.get(), updateChunkRect.x(), updateChunkRect.y());
  /external/webkit/Source/WebCore/platform/image-decoders/qt/
ImageFrameQt.cpp 139 void ImageFrame::setPixmap(const QPixmap& pixmap)
141 m_pixmap = pixmap;
143 m_size = pixmap.size();
144 m_hasAlpha = pixmap.hasAlphaChannel();
  /external/webkit/Source/WebKit/qt/tests/benchmarks/painting/
tst_painting.cpp 102 QPixmap pixmap(m_page->viewportSize());
104 QPainter painter(&pixmap);
127 QPixmap pixmap(mainFrame->contentsSize());
129 QPainter painter(&pixmap);
  /external/webkit/Source/WebCore/bridge/qt/
qt_pixmapruntime.cpp 82 // this function receives an HTML image element as a parameter, makes it display the pixmap/image from Qt
98 // we now know that we have a valid <img> element as the argument, we can attach the pixmap to it.
242 const QString stringValue = QString::fromLatin1("[Qt Native Pixmap %1,%2]").arg(width()).arg(height());
276 const QPixmap pixmap = QPixmap::fromImage(data.value<QImage>()); local
277 data = QVariant::fromValue<QPixmap>(pixmap);
278 return pixmap;
318 QPixmap* pixmap = image->nativeImageForCurrentFrame();
319 if (!pixmap)
323 ? QVariant::fromValue<QPixmap>(*pixmap)
324 : QVariant::fromValue<QImage>(pixmap->toImage())
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/
XWDFile.h 59 CARD32 pixmap_depth B32; /* Pixmap depth */
60 CARD32 pixmap_width B32; /* Pixmap width */
61 CARD32 pixmap_height B32; /* Pixmap height */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/X11/
XWDFile.h 59 CARD32 pixmap_depth B32; /* Pixmap depth */
60 CARD32 pixmap_width B32; /* Pixmap width */
61 CARD32 pixmap_height B32; /* Pixmap height */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/X11/
XWDFile.h 59 CARD32 pixmap_depth B32; /* Pixmap depth */
60 CARD32 pixmap_width B32; /* Pixmap width */
61 CARD32 pixmap_height B32; /* Pixmap height */
  /external/skia/include/gpu/gl/
SkNativeGLContext.h 73 Pixmap fPixmap;
  /external/webkit/Source/WebCore/plugins/gtk/
gtk2xtbin.h 140 Pixmap border_pixmap; /* window border pixmap or NULL */
149 Pixmap background_pixmap; /* window background pixmap or NULL */
  /frameworks/native/opengl/tools/glgen/specs/egl/
EGL14.spec 11 EGLSurface eglCreatePixmapSurface ( EGLDisplay dpy, EGLConfig config, EGLNativePixmapType pixmap, const EGLint *attrib_list )

Completed in 661 milliseconds

1 2 3 4 5 6 7 8 9