/external/chromium_org/third_party/skia/src/core/ |
SkDeviceImageFilterProxy.h | 23 virtual bool filterImage(const SkImageFilter* filter, const SkBitmap& src, 26 return fDevice->filterImage(filter, src, ctx, result, offset);
|
SkImageFilter.cpp | 169 bool SkImageFilter::filterImage(Proxy* proxy, const SkBitmap& src, 185 if ((proxy && proxy->filterImage(this, src, context, result, offset)) || 388 // Ensure that GrContext calls under filterImage and filterImageGPU below will see an identity 396 if (this->filterImage(proxy, src, ctx, result, offset)) {
|
SkCanvas.cpp | [all...] |
/external/chromium_org/third_party/skia/src/effects/ |
SkComposeImageFilter.cpp | 25 return inner->filterImage(proxy, src, ctx, &tmp, offset) && 26 outer->filterImage(proxy, tmp, ctx, result, offset);
|
SkOffsetImageFilter.cpp | 29 if (input && !input->filterImage(proxy, source, ctx, &src, &srcOffset)) { 40 if (input && !input->filterImage(proxy, source, ctx, &src, &srcOffset)) {
|
SkXfermodeImageFilter.cpp | 63 !backgroundInput->filterImage(proxy, src, ctx, &background, &backgroundOffset)) { 68 !foregroundInput->filterImage(proxy, src, ctx, &foreground, &foregroundOffset)) {
|
SkColorFilterImageFilter.cpp | 114 if (getInput(0) && !getInput(0)->filterImage(proxy, source, ctx, &src, &srcOffset)) {
|
SkMatrixImageFilter.cpp | 66 if (getInput(0) && !getInput(0)->filterImage(proxy, source, ctx, &src, &srcOffset)) {
|
SkMergeImageFilter.cpp | 88 if (!filter->filterImage(proxy, src, ctx, &tmp, &pos)) {
|
SkTileImageFilter.cpp | 33 if (input && !input->filterImage(proxy, src, ctx, &source, &srcOffset)) {
|
SkDropShadowImageFilter.cpp | 71 if (getInput(0) && !getInput(0)->filterImage(proxy, source, ctx, &src, &srcOffset))
|
SkBlurImageFilter.cpp | 165 if (getInput(0) && !getInput(0)->filterImage(proxy, source, ctx, &src, &srcOffset)) {
|
SkDisplacementMapEffect.cpp | 231 if ((colorInput && !colorInput->filterImage(proxy, src, ctx, &color, &colorOffset)) || 232 (displInput && !displInput->filterImage(proxy, src, ctx, &displ, &displOffset))) {
|
SkMatrixConvolutionImageFilter.cpp | 314 if (getInput(0) && !getInput(0)->filterImage(proxy, source, ctx, &src, &srcOffset)) {
|
SkMorphologyImageFilter.cpp | 151 if (getInput(0) && !getInput(0)->filterImage(proxy, source, ctx, &src, &srcOffset)) {
|
SkLightingImageFilter.cpp | [all...] |
/external/chromium_org/third_party/skia/include/core/ |
SkImageFilter.h | 87 virtual bool filterImage(const SkImageFilter*, const SkBitmap& src, 105 bool filterImage(Proxy*, const SkBitmap& src, const Context&,
|
SkDevice.h | 271 * filter to drawSprite and drawDevice (and potentially filterImage). 284 virtual bool filterImage(const SkImageFilter*, const SkBitmap&,
|
/external/chromium_org/third_party/skia/src/gpu/ |
SkGpuDevice.h | 115 virtual bool filterImage(const SkImageFilter*, const SkBitmap&,
|
SkGpuDevice.cpp | [all...] |
/external/chromium_org/third_party/skia/src/utils/ |
SkPictureUtils.cpp | 76 virtual bool filterImage(const SkImageFilter*, const SkBitmap&, const SkImageFilter::Context&,
|
SkGatherPixelRefsAndRects.h | 285 virtual bool filterImage(const SkImageFilter*, const SkBitmap&, const SkImageFilter::Context&,
|
SkDeferredCanvas.cpp | 244 virtual bool filterImage(const SkImageFilter*, const SkBitmap&, [all...] |
/external/chromium_org/third_party/skia/tests/ |
ImageFilterTest.cpp | 279 REPORTER_ASSERT_MESSAGE(reporter, filter->filterImage(&proxy, bitmap, ctx, 330 positiveFilter->filterImage(&proxy, gradient, ctx, &positiveResult1, &offset); 331 negativeFilter->filterImage(&proxy, gradient, ctx, &negativeResult1, &offset); 335 positiveFilter->filterImage(&proxy, gradient, negativeCTX, &negativeResult2, &offset); 336 negativeFilter->filterImage(&proxy, gradient, negativeCTX, &positiveResult2, &offset); [all...] |
/external/chromium_org/third_party/skia/gm/ |
imagefiltersgraph.cpp | 49 if (input && !input->filterImage(proxy, src, ctx, &source, &srcOffset)) {
|