Searched defs:pixmap (Results 1 - 25 of 29) sorted by relevance

12

/external/webkit/Source/WebCore/platform/graphics/qt/
H A DPatternQt.cpp36 QPixmap* pixmap = tileImage()->nativeImageForCurrentFrame(); local
37 if (!pixmap)
41 QBrush brush(*pixmap);
H A DStillImageQt.h37 static PassRefPtr<StillImage> create(const QPixmap& pixmap) argument
39 return adoptRef(new StillImage(pixmap));
42 static PassRefPtr<StillImage> createForRendering(const QPixmap* pixmap) argument
44 return adoptRef(new StillImage(pixmap));
57 StillImage(const QPixmap& pixmap);
58 StillImage(const QPixmap* pixmap);
H A DTransparencyLayer.h49 : pixmap(rect.width(), rect.height())
55 pixmap.fill(Qt::transparent);
56 painter.begin(&pixmap);
70 QPixmap pixmap; member in struct:WebCore::TransparencyLayer
H A DStillImageQt.cpp39 StillImage::StillImage(const QPixmap& pixmap) argument
40 : m_pixmap(new QPixmap(pixmap))
44 StillImage::StillImage(const QPixmap* pixmap) argument
45 : m_pixmap(pixmap)
H A DImageDecoderQt.cpp197 QPixmap pixmap = QPixmap::fromImageReader(m_reader.get()); local
199 if (pixmap.isNull()) {
211 buffer->setPixmap(pixmap);
H A DImageQt.cpp58 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;
163 BitmapImage(QPixmap* pixmap, ImageObserver* observer) argument
[all...]
H A DTileQt.cpp41 static QPixmap* pixmap; local
42 if (!pixmap) {
43 pixmap = new QPixmap(checkerSize, checkerSize);
44 QPainter painter(pixmap);
55 return *pixmap;
H A DTextureMapperQt.cpp36 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
[all...]
H A DGraphicsContextQt.cpp1000 p->drawPixmap(layer->offset, layer->pixmap);
1360 QPixmap pixmap = QPixmap::fromWinHBITMAP(bitmap, supportAlphaBlend ? QPixmap::PremultipliedAlpha : QPixmap::NoAlpha); local
1361 m_data->p()->drawPixmap(dstRect, pixmap);
/external/webkit/Tools/DumpRenderTree/gtk/
H A DPixelDumpSupportGtk.cpp44 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/WebKit/qt/examples/platformplugin/
H A DWebNotificationPresenter.cpp42 QPixmap pixmap; local
43 if (data->iconData().length() && pixmap.loadFromData(data->iconData())) {
45 label->setPixmap(pixmap);
/external/webkit/Source/WebCore/platform/image-decoders/qt/
H A DImageFrameQt.cpp139 void ImageFrame::setPixmap(const QPixmap& pixmap) argument
141 m_pixmap = pixmap;
143 m_size = pixmap.size();
144 m_hasAlpha = pixmap.hasAlphaChannel();
/external/webkit/Source/WebKit/qt/tests/hybridPixmap/
H A Dwidget.cpp48 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/
H A DGraphicsContext3DInternal.cpp179 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) argument
206 , m_pixmap(pixmap)
/external/webkit/Source/WebCore/platform/qt/
H A DPasteboardQt.cpp165 QPixmap* pixmap = image->nativeImageForCurrentFrame(); local
166 if (!pixmap)
168 QApplication::clipboard()->setPixmap(*pixmap, QClipboard::Clipboard);
/external/webkit/Source/WebKit/qt/Api/
H A Dqwebframe_p.h148 QPixmap pixmap; member in class:QWebHitTestResultPrivate
H A Dqwebframe.cpp1706 pixmap = *pix;
1898 Returns a QPixmap containing the image. A null pixmap is returned if the
1901 QPixmap QWebHitTestResult::pixmap() const function in class:QWebHitTestResult
1905 return d->pixmap;
/external/webkit/Source/WebKit/qt/WebCoreSupport/
H A DNotificationPresenterClientQt.cpp211 QPixmap pixmap; local
212 if (bytes.length() && pixmap.loadFromData(bytes)) {
213 QIcon icon(pixmap);
/external/webkit/Tools/MiniBrowser/qt/
H A DBrowserWindow.cpp234 QPixmap pixmap = QPixmap::grabWidget(m_browser); local
240 label->setPixmap(pixmap);
254 pixmap.save(fileName, "png");
/external/chromium/chrome/browser/ui/gtk/tabs/
H A Ddragged_tab_gtk.cc239 GdkPixmap* pixmap = gdk_pixmap_new(NULL, size.width(), size.height(), 1); local
240 cairo_t* cairo_context = gdk_cairo_create(GDK_DRAWABLE(pixmap));
245 // Blit the rendered bitmap into a pixmap. Any pixel set in the pixmap will
273 gdk_window_shape_combine_mask(container_->window, pixmap, 0, 0);
274 g_object_unref(pixmap);
/external/qemu/distrib/sdl-1.2.15/src/video/Xext/extensions/
H A Dxf86dga.h95 Pixmap pixmap; member in struct:__anon10620
/external/qemu/distrib/sdl-1.2.15/src/video/macrom/
H A DSDL_romvideo.c533 PixMapHandle pixmap; local
581 pixmap = GetGWorldPixMap(memworld);
582 LockPixels(pixmap);
583 current->pitch = (**pixmap).rowBytes & 0x3FFF;
584 current->pixels = GetPixBaseAddr(pixmap);
/external/webkit/Source/ThirdParty/ANGLE/src/libEGL/
H A DlibEGL.cpp411 EGLSurface __stdcall eglCreatePixmapSurface(EGLDisplay dpy, EGLConfig config, EGLNativePixmapType pixmap, const EGLint *attrib_list) argument
413 TRACE("(EGLDisplay dpy = 0x%0.8p, EGLConfig config = 0x%0.8p, EGLNativePixmapType pixmap = 0x%0.8p, "
414 "const EGLint *attrib_list = 0x%0.8p)", dpy, config, pixmap, attrib_list);
/external/webkit/Source/WebCore/bridge/qt/
H A Dqt_pixmapruntime.cpp82 // 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.
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());
/external/webkit/Tools/QtTestBrowser/
H A Dlauncherwindow.cpp659 QPixmap pixmap = QPixmap::grabWidget(m_view); local
665 label->setPixmap(pixmap);
672 pixmap.save(fileName, "png");

Completed in 1707 milliseconds

12