Searched refs:SkCubicResampler (Results 1 – 23 of 23) sorted by relevance
/external/skia/include/core/ |
D | SkSamplingOptions.h | 46 struct SkCubicResampler { struct 50 static constexpr SkCubicResampler Mitchell() { return {1/3.0f, 1/3.0f}; } in Mitchell() argument 51 static constexpr SkCubicResampler CatmullRom() { return {0.0f, 1/2.0f}; } in CatmullRom() argument 56 const SkCubicResampler cubic = {0, 0}; 78 explicit SkSamplingOptions(const SkCubicResampler& c) in SkSamplingOptions()
|
D | SkImage.h | 678 using CubicResampler = SkCubicResampler;
|
/external/skia/gm/ |
D | bicubic.cpp | 37 SkCubicResampler::CatmullRom(), 38 SkCubicResampler::Mitchell(),
|
D | tiledscaledbitmap.cpp | 69 SkSamplingOptions(SkCubicResampler::Mitchell()), mat)); in onDraw()
|
D | filterbug.cpp | 62 static const SkSamplingOptions kSampling(SkCubicResampler::Mitchell()); in onDraw()
|
D | localmatriximageshader.cpp | 74 p.setShader(image->makeShader(SkSamplingOptions(SkCubicResampler::Mitchell()))
|
D | clippedbitmapshaders.cpp | 95 fHQ ? SkSamplingOptions(SkCubicResampler::Mitchell()) in onDraw()
|
D | filterindiabox.cpp | 44 draw_cell(canvas, bm, mat, 3 * dx, SkSamplingOptions(SkCubicResampler::Mitchell())); in draw_row()
|
D | perspimages.cpp | 85 SkSamplingOptions(SkCubicResampler::Mitchell())}) { in onDraw()
|
D | anisotropic.cpp | 25 AnisotropicGM() : fSampling(SkCubicResampler::Mitchell()) { in AnisotropicGM()
|
D | resizeimagefilter.cpp | 80 SkSamplingOptions(SkCubicResampler::Mitchell()), in onDraw()
|
D | mipmap.cpp | 52 SkSamplingOptions(SkCubicResampler::Mitchell()),
|
D | imagescalealigned.cpp | 114 SkSamplingOptions(SkCubicResampler::Mitchell()), in drawSets()
|
D | perspshaders.cpp | 160 this->drawRow(canvas, SkSamplingOptions(SkCubicResampler::Mitchell())); in onDraw()
|
D | rectangletexture.cpp | 160 SkSamplingOptions(SkCubicResampler::Mitchell()), in onDraw()
|
D | imagefromyuvtextures.cpp | 246 SkSamplingOptions(SkCubicResampler::Mitchell())}) in onDraw()
|
D | compressed_textures.cpp | 274 SkSamplingOptions sampling(SkCubicResampler::Mitchell()); in drawCell()
|
D | imagefiltersbase.cpp | 193 SkSamplingOptions sampling(SkCubicResampler::Mitchell()); in draw_atlas()
|
D | bleed.cpp | 249 const SkSamplingOptions high(SkCubicResampler::Mitchell()); in onDraw()
|
/external/skia/src/gpu/ |
D | SkGr.h | 239 static inline bool GrValidCubicResampler(SkCubicResampler cubic) { in GrValidCubicResampler()
|
/external/skia/samplecode/ |
D | SampleXfer.cpp | 209 void draw(SkCanvas* canvas, SkCubicResampler cubic) const { in draw()
|
/external/skia/src/shaders/ |
D | SkImageShader.cpp | 186 constexpr SkCubicResampler kDefaultCubicResampler{1.0f/3, 1.0f/3}; 188 static bool is_default_cubic_resampler(SkCubicResampler cubic) { in is_default_cubic_resampler()
|
/external/skia/src/image/ |
D | SkImage.cpp | 810 *this = SkSamplingOptions(SkCubicResampler{1/3.0f, 1/3.0f}); in SkSamplingOptions()
|