Home
last modified time | relevance | path

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

/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
DFEMorphology.cpp219 IntRect effectDrawingRect = requestedRegionOfInputImageData(in->absolutePaintRect()); in applySoftware() local
220 RefPtr<Uint8ClampedArray> srcPixelArray = in->asPremultipliedImage(effectDrawingRect); in applySoftware()
225 paintingData.width = effectDrawingRect.width(); in applySoftware()
226 paintingData.height = effectDrawingRect.height(); in applySoftware()
227 paintingData.radiusX = min(effectDrawingRect.width() - 1, radiusX); in applySoftware()
228 paintingData.radiusY = min(effectDrawingRect.height() - 1, radiusY); in applySoftware()
DFEConvolveMatrix.cpp431 IntRect effectDrawingRect = requestedRegionOfInputImageData(in->absolutePaintRect()); in applySoftware() local
435 srcPixelArray = in->asUnmultipliedImage(effectDrawingRect); in applySoftware()
437 srcPixelArray = in->asPremultipliedImage(effectDrawingRect); in applySoftware()
DFEGaussianBlur.cpp293 IntRect effectDrawingRect = requestedRegionOfInputImageData(in->absolutePaintRect()); in applySoftware() local
294 in->copyPremultipliedImage(srcPixelArray, effectDrawingRect); in applySoftware()
DFELighting.cpp401 IntRect effectDrawingRect = requestedRegionOfInputImageData(in->absolutePaintRect()); in applySoftware() local
402 in->copyPremultipliedImage(srcPixelArray, effectDrawingRect); in applySoftware()
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/custom/
DFECustomFilter.cpp133 IntRect effectDrawingRect = requestedRegionOfInputImageData(in->absolutePaintRect()); in clearShaderResult() local
134 in->copyUnmultipliedImage(dstPixelArray, effectDrawingRect); in clearShaderResult()
180 IntRect effectDrawingRect = requestedRegionOfInputImageData(in->absolutePaintRect()); in applyShader() local
181 IntSize newContextSize(effectDrawingRect.size()); in applyShader()
187 RefPtr<Uint8ClampedArray> srcPixelArray = in->asUnmultipliedImage(effectDrawingRect); in applyShader()