HomeSort by relevance Sort by last modified time
    Searched refs:CropRect (Results 51 - 75 of 99) sorted by null

1 23 4

  /external/skia/src/effects/
SkMergeImageFilter.cpp 45 const CropRect* cropRect) : INHERITED(first, second, cropRect) {
56 const CropRect* cropRect) : INHERITED(count, filters, cropRect) {
SkOffsetImageFilter.cpp 100 const CropRect* cropRect) : INHERITED(input, cropRect) {
SkLightingImageFilter.cpp 267 SkScalar kd, SkImageFilter* input, const CropRect* cropRect);
287 SkSpecularLightingImageFilter(SkLight* light, SkScalar surfaceScale, SkScalar ks, SkScalar shininess, SkImageFilter* input, const CropRect* cropRect);
832 SkLightingImageFilter::SkLightingImageFilter(SkLight* light, SkScalar surfaceScale, SkImageFilter* input, const CropRect* cropRect)
833 : INHERITED(input, cropRect),
844 SkScalar kd, SkImageFilter* input, const CropRect* cropRect) {
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
FEOffset.cpp 99 SkImageFilter::CropRect cropRect = getCropRect(builder->cropOffset());
100 return adoptRef(SkOffsetImageFilter::Create(SkFloatToScalar(filter->applyHorizontalScale(m_dx)), SkFloatToScalar(filter->applyVerticalScale(m_dy)), input.get(), &cropRect));
FEDropShadow.cpp 115 SkImageFilter::CropRect cropRect = getCropRect(builder->cropOffset());
116 return adoptRef(SkDropShadowImageFilter::Create(SkFloatToScalar(dx), SkFloatToScalar(dy), SkFloatToScalar(stdX), SkFloatToScalar(stdY), color.rgb(), input.get(), &cropRect));
FEGaussianBlur.cpp 174 SkImageFilter::CropRect rect = getCropRect(builder->cropOffset());
FEMorphology.cpp 136 SkImageFilter::CropRect rect = getCropRect(builder->cropOffset());
FilterEffect.h 203 SkImageFilter::CropRect getCropRect(const FloatSize& cropOffset) const;
FEBlend.cpp 209 SkImageFilter::CropRect cropRect = getCropRect(builder->cropOffset());
210 return adoptRef(SkXfermodeImageFilter::Create(mode, background.get(), foreground.get(), &cropRect));
FEColorMatrix.cpp 193 SkImageFilter::CropRect rect = getCropRect(builder->cropOffset());
FEComponentTransfer.cpp 212 SkImageFilter::CropRect cropRect = getCropRect(builder->cropOffset());
213 return adoptRef(SkColorFilterImageFilter::Create(colorFilter, input.get(), &cropRect));
FEDisplacementMap.cpp 185 SkImageFilter::CropRect cropRect = getCropRect(builder->cropOffset());
188 return adoptRef(SkDisplacementMapEffect::Create(typeX, typeY, SkFloatToScalar(filter()->applyHorizontalScale(m_scale)), displ.get(), color.get(), &cropRect));
  /external/chromium_org/third_party/skia/tests/
ShaderImageFilterTest.cpp 38 SkImageFilter::CropRect cr(r);
ImageFilterTest.cpp 120 static SkImageFilter* make_grayscale(SkImageFilter* input = NULL, const SkImageFilter::CropRect* cropRect = NULL) {
128 return SkColorFilterImageFilter::Create(filter, input, cropRect);
156 SkImageFilter::CropRect cropRect(SkRect::MakeXYWH(0, 0, 100, 100));
157 SkAutoTUnref<SkImageFilter> grayWithCrop(make_grayscale(NULL, &cropRect));
242 SkImageFilter::CropRect inputCropRect(SkRect::MakeXYWH(8, 13, 80, 80));
243 SkImageFilter::CropRect cropRect(SkRect::MakeXYWH(20, 30, 60, 60));
258 SkColorFilterImageFilter::Create(cf.get(), input.get(), &cropRect),
    [all...]
  /external/skia/tests/
ShaderImageFilterTest.cpp 38 SkImageFilter::CropRect cr(r);
ImageFilterTest.cpp 120 static SkImageFilter* make_grayscale(SkImageFilter* input = NULL, const SkImageFilter::CropRect* cropRect = NULL) {
128 return SkColorFilterImageFilter::Create(filter, input, cropRect);
156 SkImageFilter::CropRect cropRect(SkRect::MakeXYWH(0, 0, 100, 100));
157 SkAutoTUnref<SkImageFilter> grayWithCrop(make_grayscale(NULL, &cropRect));
242 SkImageFilter::CropRect inputCropRect(SkRect::MakeXYWH(8, 13, 80, 80));
243 SkImageFilter::CropRect cropRect(SkRect::MakeXYWH(20, 30, 60, 60));
258 SkColorFilterImageFilter::Create(cf.get(), input.get(), &cropRect),
    [all...]
  /external/chromium_org/third_party/skia/gm/
imagefiltersgraph.cpp 180 SkImageFilter::CropRect cropRect(SkRect::MakeWH(SkIntToScalar(95), SkIntToScalar(100)));
182 SkXfermodeImageFilter::Create(mode, blur, NULL, &cropRect));
195 SkImageFilter::CropRect outerRect(SkRect::MakeXYWH(SkIntToScalar(10), SkIntToScalar(10),
197 SkImageFilter::CropRect innerRect(SkRect::MakeXYWH(SkIntToScalar(20), SkIntToScalar(20),
  /external/skia/gm/
imagefiltersgraph.cpp 180 SkImageFilter::CropRect cropRect(SkRect::MakeWH(SkIntToScalar(95), SkIntToScalar(100)));
182 SkXfermodeImageFilter::Create(mode, blur, NULL, &cropRect));
195 SkImageFilter::CropRect outerRect(SkRect::MakeXYWH(SkIntToScalar(10), SkIntToScalar(10),
197 SkImageFilter::CropRect innerRect(SkRect::MakeXYWH(SkIntToScalar(20), SkIntToScalar(20),
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
texparam.c 436 texObj->CropRect[0] = params[0];
437 texObj->CropRect[1] = params[1];
438 texObj->CropRect[2] = params[2];
439 texObj->CropRect[3] = params[3];
    [all...]
  /external/mesa3d/src/mesa/main/
texparam.c 436 texObj->CropRect[0] = params[0];
437 texObj->CropRect[1] = params[1];
438 texObj->CropRect[2] = params[2];
439 texObj->CropRect[3] = params[3];
    [all...]
  /external/chromium_org/third_party/skia/src/effects/
SkOffsetImageFilter.cpp 100 const CropRect* cropRect) : INHERITED(input, cropRect) {
SkLightingImageFilter.cpp 267 SkScalar kd, SkImageFilter* input, const CropRect* cropRect);
287 SkSpecularLightingImageFilter(SkLight* light, SkScalar surfaceScale, SkScalar ks, SkScalar shininess, SkImageFilter* input, const CropRect* cropRect);
832 SkLightingImageFilter::SkLightingImageFilter(SkLight* light, SkScalar surfaceScale, SkImageFilter* input, const CropRect* cropRect)
833 : INHERITED(input, cropRect),
844 SkScalar kd, SkImageFilter* input, const CropRect* cropRect) {
    [all...]
  /external/chromium_org/third_party/skia/samplecode/
SampleFilterFuzz.cpp 287 SkImageFilter::CropRect cropR(SkRect::MakeWH(SkIntToScalar(kBitmapSize),
343 SkImageFilter::CropRect cropR(SkRect::MakeWH(SkIntToScalar(kBitmapSize),
  /external/skia/samplecode/
SampleFilterFuzz.cpp 287 SkImageFilter::CropRect cropR(SkRect::MakeWH(SkIntToScalar(kBitmapSize),
343 SkImageFilter::CropRect cropR(SkRect::MakeWH(SkIntToScalar(kBitmapSize),
  /external/chromium_org/cc/trees/
layer_tree_host_pixeltest_filters.cc 181 SkImageFilter::CropRect crop_rect(SkRect::MakeXYWH(0, 100, 200, 100));

Completed in 663 milliseconds

1 23 4