Home
last modified time | relevance | path

Searched refs:effectDrawingRect (Results 1 – 5 of 5) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/filters/
DFEMorphology.cpp124 IntRect effectDrawingRect = requestedRegionOfInputImageData(in->absolutePaintRect()); in apply() local
125 RefPtr<ByteArray> srcPixelArray = in->asPremultipliedImage(effectDrawingRect); in apply()
127 int effectWidth = effectDrawingRect.width() * 4; in apply()
130 radiusX = min(effectDrawingRect.width() - 1, radiusX); in apply()
131 radiusY = min(effectDrawingRect.height() - 1, radiusY); in apply()
134 for (int y = 0; y < effectDrawingRect.height(); ++y) { in apply()
136 int endY = min(effectDrawingRect.height() - 1, y + radiusY); in apply()
152 for (int x = 0; x < effectDrawingRect.width(); ++x) { in apply()
153 unsigned endX = min(x + radiusX, effectDrawingRect.width() - 1); in apply()
163 if (x + radiusX <= effectDrawingRect.width()) in apply()
DFEGaussianBlur.cpp182 IntRect effectDrawingRect = requestedRegionOfInputImageData(in->absolutePaintRect()); in apply() local
183 in->copyPremultipliedImage(srcPixelArray, effectDrawingRect); in apply()
DFEConvolveMatrix.cpp410 IntRect effectDrawingRect = requestedRegionOfInputImageData(in->absolutePaintRect()); in apply() local
414 srcPixelArray = in->asUnmultipliedImage(effectDrawingRect); in apply()
416 srcPixelArray = in->asPremultipliedImage(effectDrawingRect); in apply()
DFELighting.cpp356 IntRect effectDrawingRect = requestedRegionOfInputImageData(in->absolutePaintRect()); in apply() local
357 in->copyUnmultipliedImage(srcPixelArray, effectDrawingRect); in apply()
/external/webkit/Source/WebCore/
DChangeLog-2010-05-242344 when effectDrawingRect has negative location (x or y is less than 0).