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

  /external/webkit/WebCore/platform/graphics/filters/
SourceAlpha.cpp 60 GraphicsContext* filterContext = getEffectContext();
61 if (!filterContext)
67 filterContext->save();
68 filterContext->clipToImageBuffer(imageRect, filter->sourceImage());
69 filterContext->fillRect(imageRect, Color::black, DeviceColorSpace);
70 filterContext->restore();
FEComposite.cpp 127 GraphicsContext* filterContext = getEffectContext();
128 if (!filterContext)
134 filterContext->drawImage(m_in2->resultImage()->image(), DeviceColorSpace, calculateDrawingRect(m_in2->scaledSubRegion()));
135 filterContext->drawImage(m_in->resultImage()->image(), DeviceColorSpace, calculateDrawingRect(m_in->scaledSubRegion()));
138 filterContext->save();
139 filterContext->clipToImageBuffer(calculateDrawingRect(m_in2->scaledSubRegion()), m_in2->resultImage());
140 filterContext->drawImage(m_in->resultImage()->image(), DeviceColorSpace, calculateDrawingRect(m_in->scaledSubRegion()));
141 filterContext->restore();
144 filterContext->drawImage(m_in->resultImage()->image(), DeviceColorSpace, calculateDrawingRect(m_in->scaledSubRegion()));
145 filterContext->drawImage(m_in2->resultImage()->image(), DeviceColorSpace, calculateDrawingRect(m_in2->scaledSubR (…)
    [all...]
SourceGraphic.cpp 59 GraphicsContext* filterContext = getEffectContext();
60 if (!filterContext)
63 filterContext->drawImage(filter->sourceImage()->image(), DeviceColorSpace, IntPoint());
FEColorMatrix.cpp 163 GraphicsContext* filterContext = getEffectContext();
164 if (!filterContext)
167 filterContext->drawImage(m_in->resultImage()->image(), DeviceColorSpace, calculateDrawingRect(m_in->scaledSubRegion()));
  /external/webkit/WebCore/svg/graphics/filters/
SVGFEImage.cpp 53 GraphicsContext* filterContext = getEffectContext();
54 if (!filterContext)
62 filterContext->drawImage(m_image.get(), DeviceColorSpace, destRect, srcRect);
SVGFETile.cpp 57 GraphicsContext* filterContext = getEffectContext();
58 if (!filterContext)
82 filterContext->setFillPattern(pattern);
83 filterContext->fillRect(FloatRect(FloatPoint(), scaledSubRegion().size()));
SVGFEFlood.cpp 68 GraphicsContext* filterContext = getEffectContext();
69 if (!filterContext)
73 filterContext->fillRect(FloatRect(FloatPoint(), scaledSubRegion().size()), color, DeviceColorSpace);
SVGFEMerge.cpp 76 GraphicsContext* filterContext = getEffectContext();
77 if (!filterContext)
82 filterContext->drawImage(m_mergeInputs[i]->resultImage()->image(), DeviceColorSpace, destRect);
SVGFEOffset.cpp 73 GraphicsContext* filterContext = getEffectContext();
74 if (!filterContext)
94 filterContext->drawImage(m_in->resultImage()->image(), DeviceColorSpace, dstRect);

Completed in 135 milliseconds