OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:paintSize
(Results
1 - 3
of
3
) sorted by null
/external/webkit/Source/WebCore/platform/graphics/filters/
FEDisplacementMap.cpp
118
IntSize
paintSize
= absolutePaintRect().size();
123
int stride =
paintSize
.width() * 4;
124
for (int y = 0; y <
paintSize
.height(); ++y) {
126
for (int x = 0; x <
paintSize
.width(); ++x) {
131
if (srcX < 0 || srcX >=
paintSize
.width() || srcY < 0 || srcY >=
paintSize
.height())
FEGaussianBlur.cpp
192
IntSize
paintSize
= absolutePaintRect().size();
193
RefPtr<ByteArray> tmpImageData = ByteArray::create(
paintSize
.width() *
paintSize
.height() * 4);
196
int stride = 4 *
paintSize
.width();
204
boxBlur(srcPixelArray, tmpPixelArray, kernelSizeX, dxLeft, dxRight, 4, stride,
paintSize
.width(),
paintSize
.height(), isAlphaImage());
213
boxBlur(tmpPixelArray, srcPixelArray, kernelSizeY, dyLeft, dyRight, stride, 4,
paintSize
.height(),
paintSize
.width(), isAlphaImage());
FEConvolveMatrix.cpp
418
IntSize
paintSize
= absolutePaintRect().size();
422
paintingData.width =
paintSize
.width();
423
paintingData.height =
paintSize
.height();
427
int clipRight =
paintSize
.width() - m_kernelSize.width();
428
int clipBottom =
paintSize
.height() - m_kernelSize.height();
436
setOuterPixels(paintingData, 0, 0,
paintSize
.width(), m_targetOffset.y());
437
if (clipBottom <
paintSize
.height())
438
setOuterPixels(paintingData, 0, clipBottom,
paintSize
.width(),
paintSize
.height());
441
if (clipRight <
paintSize
.width()
[
all
...]
Completed in 44 milliseconds