HomeSort by relevance Sort by last modified time
    Searched refs:m_pixmap (Results 1 - 14 of 14) sorted by null

  /external/webkit/Source/WebCore/platform/image-decoders/qt/
ImageFrameQt.cpp 62 m_pixmap = QPixmap();
73 if (m_pixmap.isNull() && !m_image.isNull()) {
74 m_pixmap = QPixmap(m_image.width(), m_image.height());
77 m_pixmap.fill(QColor(0, 0, 0, 0));
86 m_pixmap = other.m_pixmap;
100 m_pixmap = QPixmap(newWidth, newHeight);
101 if (m_pixmap.isNull())
111 if (m_pixmap.isNull() && !m_image.isNull()) {
112 m_pixmap = QPixmap::fromImage(m_image)
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/qt/
StillImageQt.cpp 40 : m_pixmap(new QPixmap(pixmap))
45 : m_pixmap(pixmap)
52 delete m_pixmap;
57 return IntSize(m_pixmap->width(), m_pixmap->height());
62 return const_cast<NativeImagePtr>(m_pixmap);
68 if (m_pixmap->isNull())
82 shadowPainter->drawPixmap(normalizedDst, *m_pixmap, normalizedSrc);
87 ctxt->platformContext()->drawPixmap(normalizedDst, *m_pixmap, normalizedSrc);
ImageBufferDataQt.h 43 QPixmap m_pixmap; member in class:WebCore::ImageBufferData
TextureMapperQt.cpp 35 if (m_pixmap.paintingActive())
37 m_pixmap = QPixmap();
44 if (size.width() > m_pixmap.size().width() || size.height() > m_pixmap.size().height() || m_pixmap.isNull())
45 m_pixmap = QPixmap(size.width(), size.height());
47 m_pixmap.fill(Qt::transparent);
52 m_painter.begin(&m_pixmap);
67 return m_pixmap.save(path, "PNG");
78 m_pixmap = *pixmap
    [all...]
TextureMapperQt.h 33 virtual IntSize size() const { return IntSize(m_pixmap.width(), m_pixmap.height()); }
39 virtual bool isValid() const { return !m_pixmap.isNull() || !m_image.isNull(); }
47 QPixmap m_pixmap; member in class:WebCore::BitmapTextureQt
StillImageQt.h 61 const QPixmap* m_pixmap; member in class:WebCore::StillImage
ImageBufferQt.cpp 51 : m_pixmap(size)
54 if (m_pixmap.isNull())
57 m_pixmap.fill(QColor(Qt::transparent));
62 if (!painter->begin(&m_pixmap))
80 m_image = StillImage::createForRendering(&m_pixmap);
85 QPaintEngine* paintEngine = m_pixmap.paintEngine();
87 return m_pixmap.toImage();
93 QImage image = m_pixmap.toImage();
132 return StillImage::create(m_data.m_pixmap);
194 m_data.m_pixmap = QPixmap::fromImage(image)
    [all...]
  /sdk/emulator/opengl/host/libs/Translator/EGL/
EglPixmapSurface.h 34 EGLNativePixmapType m_pixmap; member in class:EglPixmapSurface
EglPixmapSurface.cpp 30 m_pixmap(pix)
37 s_associatedPixmaps.erase(m_pixmap);
  /external/webkit/Source/WebCore/platform/graphics/gtk/
GraphicsContext3DInternal.h 52 Pixmap m_pixmap; member in class:WebCore::GraphicsContext3DInternal
GraphicsContext3DInternal.cpp 198 , m_pixmap(0)
206 , m_pixmap(pixmap)
231 if (m_pixmap) {
232 XFreePixmap(sharedDisplay(), m_pixmap); local
233 m_pixmap = 0;
  /external/webkit/Source/WebCore/platform/image-decoders/
ImageDecoder.h 164 m_image = m_pixmap.toImage();
165 m_pixmap = QPixmap();
197 mutable QPixmap m_pixmap;
  /external/webkit/Source/WebCore/plugins/mac/
PluginViewMac.mm 455 m_pixmap = QPixmap(m_windowRect.size());
456 m_pixmap.fill(Qt::transparent);
457 m_contextRef = m_pixmap.isNull() ? 0 : qt_mac_cg_context(&m_pixmap);
504 QPainter painter(&m_pixmap);
528 painter->drawPixmap(targetRect.x(), targetRect.y(), m_pixmap,
  /external/webkit/Source/WebCore/plugins/
PluginView.h 449 QPixmap m_pixmap; member in class:WebCore::PluginView

Completed in 195 milliseconds