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

  /external/chromium_org/third_party/WebKit/Source/platform/graphics/cpu/arm/filters/
FEGaussianBlurNEON.h 37 inline void boxBlurNEON(Uint8ClampedArray* srcPixelArray, Uint8ClampedArray* dstPixelArray,
40 uint32_t* sourcePixel = reinterpret_cast<uint32_t*>(srcPixelArray->data());
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
FEGaussianBlur.h 56 RefPtr<Uint8ClampedArray> srcPixelArray;
FEMorphology.h 56 Uint8ClampedArray* srcPixelArray;
FEConvolveMatrix.cpp 291 totals[0] += m_kernelMatrix[kernelValue] * static_cast<float>(paintingData.srcPixelArray->item(kernelPixel++));
292 totals[1] += m_kernelMatrix[kernelValue] * static_cast<float>(paintingData.srcPixelArray->item(kernelPixel++));
293 totals[2] += m_kernelMatrix[kernelValue] * static_cast<float>(paintingData.srcPixelArray->item(kernelPixel++));
295 totals[3] += m_kernelMatrix[kernelValue] * static_cast<float>(paintingData.srcPixelArray->item(kernelPixel));
304 setDestinationPixels<preserveAlphaValues>(paintingData.dstPixelArray, pixel, totals, m_divisor, paintingData.bias, paintingData.srcPixelArray);
374 totals[0] += m_kernelMatrix[kernelValue] * static_cast<float>(paintingData.srcPixelArray->item(pixelIndex));
375 totals[1] += m_kernelMatrix[kernelValue] * static_cast<float>(paintingData.srcPixelArray->item(pixelIndex + 1));
376 totals[2] += m_kernelMatrix[kernelValue] * static_cast<float>(paintingData.srcPixelArray->item(pixelIndex + 2));
379 totals[3] += m_kernelMatrix[kernelValue] * static_cast<float>(paintingData.srcPixelArray->item(pixelIndex + 3));
389 setDestinationPixels<preserveAlphaValues>(paintingData.dstPixelArray, pixel, totals, m_divisor, paintingData.bias, paintingData.srcPixelArray);
    [all...]
FEConvolveMatrix.h 81 Uint8ClampedArray* srcPixelArray;
FEComposite.cpp 302 RefPtr<Uint8ClampedArray> srcPixelArray = in->asPremultipliedImage(effectADrawingRect);
307 platformArithmeticSoftware(srcPixelArray.get(), dstPixelArray, m_k1, m_k2, m_k3, m_k4);
FELighting.cpp 417 Uint8ClampedArray* srcPixelArray = createPremultipliedImageResult();
418 if (!srcPixelArray)
424 in->copyPremultipliedImage(srcPixelArray, effectDrawingRect);
432 drawLighting(srcPixelArray, absolutePaintSize.width(), absolutePaintSize.height());

Completed in 474 milliseconds