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

  /external/skia/src/effects/
SkGpuBlurUtils.h 24 * @param srcTexture The source texture to be blurred.
25 * @param canClobberSrc If true, srcTexture may be overwritten, and
32 * @return the blurred texture, which may be srcTexture reffed, or a
36 GrTexture* srcTexture,
SkGpuBlurUtils.cpp 145 GrTexture* srcTexture,
169 SkASSERT(kBGRA_8888_GrPixelConfig == srcTexture->config() ||
170 kRGBA_8888_GrPixelConfig == srcTexture->config() ||
171 kAlpha_8_GrPixelConfig == srcTexture->config());
177 desc.fConfig = srcTexture->config();
187 tempTexture = srcTexture;
201 matrix.setIDiv(srcTexture->width(), srcTexture->height());
207 domain.inset(i < scaleFactorX ? SK_ScalarHalf / srcTexture->width() : 0.0f,
208 i < scaleFactorY ? SK_ScalarHalf / srcTexture->height() : 0.0f)
    [all...]
SkMorphologyImageFilter.cpp 653 SkAutoTUnref<GrTexture> srcTexture(SkRef(input.getTexture()));
654 SkASSERT(srcTexture);
655 GrContext* context = srcTexture->getContext();
658 GrClip clip(SkRect::MakeWH(SkIntToScalar(srcTexture->width()),
659 SkIntToScalar(srcTexture->height())));
675 apply_morphology_pass(context, texture->asRenderTarget(), clip, srcTexture,
684 srcTexture.reset(texture);
693 apply_morphology_pass(context, texture->asRenderTarget(), clip, srcTexture,
696 srcTexture.reset(texture);
698 SkImageFilter::WrapTexture(srcTexture, rect.width(), rect.height(), dst)
    [all...]
SkLightingImageFilter.cpp 359 GrTexture* srcTexture = input.getTexture();
360 GrContext* context = srcTexture->getContext();
391 this->drawRect(context, srcTexture, dst, matrix, clip, topLeft, kTopLeft_BoundaryMode, bounds);
392 this->drawRect(context, srcTexture, dst, matrix, clip, top, kTop_BoundaryMode, bounds);
393 this->drawRect(context, srcTexture, dst, matrix, clip, topRight, kTopRight_BoundaryMode,
395 this->drawRect(context, srcTexture, dst, matrix, clip, left, kLeft_BoundaryMode, bounds);
396 this->drawRect(context, srcTexture, dst, matrix, clip, interior, kInterior_BoundaryMode,
398 this->drawRect(context, srcTexture, dst, matrix, clip, right, kRight_BoundaryMode, bounds);
399 this->drawRect(context, srcTexture, dst, matrix, clip, bottomLeft, kBottomLeft_BoundaryMode,
401 this->drawRect(context, srcTexture, dst, matrix, clip, bottom, kBottom_BoundaryMode, bounds)
    [all...]
  /external/skia/src/core/
SkImageFilter.cpp 245 GrTexture* srcTexture = input.getTexture();
252 GrContext* context = srcTexture->getContext();
275 if (this->asFragmentProcessor(&fp, srcTexture, matrix, bounds)) {

Completed in 509 milliseconds