Searched refs:tileMode (Results 1 - 25 of 25) sorted by relevance

/external/skia/include/c/
H A Dsk_shader.h49 sk_shader_tilemode_t tileMode,
71 @param tileMode The tiling mode
79 sk_shader_tilemode_t tileMode,
126 @param tileMode The tiling mode
138 sk_shader_tilemode_t tileMode,
/external/skia/src/gpu/effects/
H A DGrMatrixConvolutionEffect.h28 GrTextureDomain::Mode tileMode,
32 kernel, gain, bias, kernelOffset, tileMode, convolveAlpha));
42 GrTextureDomain::Mode tileMode,
67 GrTextureDomain::Mode tileMode,
20 Make(GrResourceProvider* resourceProvider, sk_sp<GrTextureProxy> proxy, const SkIRect& bounds, const SkISize& kernelSize, const SkScalar* kernel, SkScalar gain, SkScalar bias, const SkIPoint& kernelOffset, GrTextureDomain::Mode tileMode, bool convolveAlpha) argument
H A DGrMatrixConvolutionEffect.cpp161 GrTextureDomain::Mode tileMode,
170 , fDomain(proxy.get(), GrTextureDomain::MakeTexelDomainForMode(bounds, tileMode), tileMode) {
238 GrTextureDomain::Mode tileMode,
248 kernel, gain, bias, kernelOffset, tileMode, convolveAlpha));
274 GrTextureDomain::Mode tileMode = local
285 tileMode,
153 GrMatrixConvolutionEffect(GrResourceProvider* resourceProvider, sk_sp<GrTextureProxy> proxy, const SkIRect& bounds, const SkISize& kernelSize, const SkScalar* kernel, SkScalar gain, SkScalar bias, const SkIPoint& kernelOffset, GrTextureDomain::Mode tileMode, bool convolveAlpha) argument
230 MakeGaussian( GrResourceProvider* resourceProvider, sk_sp<GrTextureProxy> proxy, const SkIRect& bounds, const SkISize& kernelSize, SkScalar gain, SkScalar bias, const SkIPoint& kernelOffset, GrTextureDomain::Mode tileMode, bool convolveAlpha, SkScalar sigmaX, SkScalar sigmaY) argument
/external/skia/bench/
H A DMatrixConvolutionBench.cpp25 MatrixConvolutionBench(SkMatrixConvolutionImageFilter::TileMode tileMode, bool convolveAlpha) argument
27 name(tileMode),
38 kernelOffset, tileMode, convolveAlpha,
/external/skia/gm/
H A Dpictureshader.cpp90 unsigned tileMode) {
96 this->drawScene(canvas, ctm, localMatrix, tileMode);
102 this->drawScene(canvas, ctm, localMatrix, tileMode);
108 this->drawScene(canvas, ctm, localMatrix, tileMode);
114 this->drawScene(canvas, ctm, localMatrix, tileMode);
121 this->drawScene(canvas, ctm, localMatrix, tileMode);
142 unsigned tileMode) {
143 SkASSERT(tileMode < SK_ARRAY_COUNT(kTileConfigs));
154 paint.setShader(SkShader::MakePictureShader(fPicture, kTileConfigs[tileMode].tmx,
155 kTileConfigs[tileMode]
89 drawSceneColumn(SkCanvas* canvas, const SkPoint& pos, SkScalar scale, SkScalar localScale, unsigned tileMode) argument
141 drawScene(SkCanvas* canvas, const SkMatrix& matrix, const SkMatrix& localMatrix, unsigned tileMode) argument
[all...]
H A Dmatrixconvolution.cpp61 SkMatrixConvolutionImageFilter::TileMode tileMode, bool convolveAlpha,
89 tileMode,
60 draw(SkCanvas* canvas, int x, int y, const SkIPoint& kernelOffset, SkMatrixConvolutionImageFilter::TileMode tileMode, bool convolveAlpha, const SkImageFilter::CropRect* cropRect = nullptr) argument
H A Dimagefiltersgraph.cpp127 auto tileMode = SkMatrixConvolutionImageFilter::kClamp_TileMode; variable
134 tileMode,
/external/skia/src/effects/gradients/
H A DSk4fGradientBase.h39 SkShader::TileMode tileMode, bool premulColors, SkScalar alpha, bool reverse);
83 template<DstType, ApplyPremul, SkShader::TileMode tileMode>
90 template <DstType dstType, ApplyPremul premul, SkShader::TileMode tileMode>
H A DSk4fGradientBase.cpp140 SkShader::TileMode tileMode, bool premulColors,
196 if (tileMode == SkShader::kClamp_TileMode) {
203 } else if (tileMode == SkShader::kMirror_TileMode && reverse) {
216 if (tileMode == SkShader::kClamp_TileMode) {
222 } else if (tileMode == SkShader::kMirror_TileMode && !reverse) {
355 template<DstType dstType, ApplyPremul premul, SkShader::TileMode tileMode>
362 TSampler<dstType, premul, tileMode> sampler(*this);
377 template<DstType dstType, ApplyPremul premul, SkShader::TileMode tileMode>
383 switch (tileMode) {
415 switch (tileMode) {
139 init(const SkColor colors[], const SkScalar pos[], int count, SkShader::TileMode tileMode, bool premulColors, SkScalar alpha, bool reverse) argument
[all...]
H A DSk4fLinearGradient.h37 template <DstType dstType, ApplyPremul premul, SkShader::TileMode tileMode>
H A DSk4fLinearGradient.cpp243 template<DstType dstType, ApplyPremul premul, SkShader::TileMode tileMode>
253 const SkScalar fx = pinFx<tileMode>(pt.x());
255 LinearIntervalProcessor<dstType, premul, tileMode> proc(fIntervals->begin(),
289 template<DstType dstType, ApplyPremul premul, SkShader::TileMode tileMode>
310 if (tileMode != kClamp_TileMode && !is_vertical) {
393 if (tileMode == kClamp_TileMode) {
H A DSkGradientShaderPriv.h336 SkShader::TileMode tileMode,
342 , fTileMode(tileMode)
333 CreateArgs(GrContext* context, const SkGradientShaderBase* shader, const SkMatrix* matrix, SkShader::TileMode tileMode, sk_sp<GrColorSpaceXform> colorSpaceXform, bool gammaCorrect) argument
H A DSkGradientShader.cpp838 unsigned tileMode) {
839 return nullptr != colors && count >= 1 && tileMode < (unsigned)SkShader::kTileModeCount;
1710 // Only the x-tileMode is unknown. However, given all the other knowns we know
837 valid_grad(const SkColor4f colors[], const SkScalar pos[], int count, unsigned tileMode) argument
/external/skia/include/effects/
H A DSkMatrixConvolutionImageFilter.h48 @param tileMode How accesses outside the image are treated. (@see
62 TileMode tileMode,
76 TileMode tileMode,
/external/skia/experimental/svg/model/
H A DSkSVGLinearGradient.cpp139 const auto tileMode = static_cast<SkShader::TileMode>(fSpreadMethod.type()); local
142 tileMode, 0, &fGradientTransform.value()));
/external/skia/src/effects/
H A DSkMatrixConvolutionImageFilter.cpp32 TileMode tileMode,
41 , fTileMode(tileMode)
56 TileMode tileMode,
75 tileMode, convolveAlpha,
99 TileMode tileMode = (TileMode)buffer.readInt(); local
101 return Make(kernelSize, kernel.get(), gain, bias, kernelOffset, tileMode,
272 static GrTextureDomain::Mode convert_tilemodes(SkMatrixConvolutionImageFilter::TileMode tileMode) { argument
273 switch (tileMode) {
27 SkMatrixConvolutionImageFilter(const SkISize& kernelSize, const SkScalar* kernel, SkScalar gain, SkScalar bias, const SkIPoint& kernelOffset, TileMode tileMode, bool convolveAlpha, sk_sp<SkImageFilter> input, const CropRect* cropRect) argument
51 Make(const SkISize& kernelSize, const SkScalar* kernel, SkScalar gain, SkScalar bias, const SkIPoint& kernelOffset, TileMode tileMode, bool convolveAlpha, sk_sp<SkImageFilter> input, const CropRect* cropRect) argument
/external/skia/fuzz/
H A DFuzzCanvas.cpp826 SkMatrixConvolutionImageFilter::TileMode tileMode; local
827 fuzz_enum_range(fuzz, &tileMode, 0, 2);
834 SkISize{n, m}, kernel, gain, bias, SkIPoint{offsetX, offsetY}, tileMode,
/external/skia/src/xps/
H A DSkXPSDevice.cpp466 static XPS_SPREAD_METHOD xps_spread_method(SkShader::TileMode tileMode) { argument
467 switch (tileMode) {
/external/robolectric/v1/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
/external/robolectric/v3/runtime/
H A Dandroid-all-5.0.0_r2-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.1.1_r9-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-4.1.2_r1-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.2.2_r1.2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.3_r2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.4_r1-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...

Completed in 249 milliseconds