Home
last modified time | relevance | path

Searched refs:fDither (Results 1 – 15 of 15) sorted by relevance

/external/skia/gm/
Dgradients.cpp104 GradientsGM(bool dither) : fDither(dither) { in GradientsGM()
111 return SkString(fDither ? "gradients" : "gradients_nodither"); in onShortName()
126 paint.setDither(fDither); in onDraw()
152 bool fDither; member in skiagm::GradientsGM
164 GradientsLocalPerspectiveGM(bool dither) : fDither(dither) { in GradientsLocalPerspectiveGM()
171 return SkString(fDither ? "gradients_local_perspective" : in onShortName()
187 paint.setDither(fDither); in onDraw()
212 bool fDither; member in skiagm::GradientsLocalPerspectiveGM
227 return SkString(fDither ? "gradients_view_perspective" : in onShortName()
266 GradientsDegenrate2PointGM(bool dither) : fDither(dither) {} in GradientsDegenrate2PointGM()
[all …]
Dgradients_no_texture.cpp83 GradientsNoTextureGM(bool dither) : fDither(dither) { in GradientsNoTextureGM()
90 return SkString(fDither ? "gradients_no_texture" : "gradients_no_texture_nodither"); in onShortName()
102 paint.setDither(fDither); in onDraw()
123 bool fDither; member in GradientsNoTextureGM
224 GradientsManyColorsGM(bool dither) : fDither(dither) {} in GradientsManyColorsGM()
229 return SkString(fDither ? "gradients_many" : "gradients_many_nodither"); in onShortName()
245 paint.setDither(fDither); in onDraw()
276 bool fDither; member in GradientsManyColorsGM
Dshallowgradient.cpp42 , fDither(dither) { in ShallowGradientGM()
66 paint.setDither(fDither); in onDraw()
73 bool fDither; member in ShallowGradientGM
Dgradients_2pt_conical.cpp310 , fDither(dither) { in ConicalGradientsGM()
313 fDither ? "" : "_nodither"); in ConicalGradientsGM()
333 paint.setDither(fDither); in onDraw()
366 bool fDither; member in skiagm::ConicalGradientsGM
/external/skia/bench/
DBenchmark.cpp20 fDither = SkTriState::kDefault; in Benchmark()
68 if (SkTriState::kDefault != fDither) { in setupPaint()
69 paint->setDither(SkTriState::kTrue == fDither); in setupPaint()
DBenchmark.h92 fDither = state; in setDither()
147 SkTriState::State fDither; variable
/external/skia/src/images/
DSkScaledBitmapSampler.h38 bool fDither; member
42 : fDither(dec.getDitherImage()) in Options()
DSkScaledBitmapSampler.cpp140 if (opts.fDither) { in get_gray_to_565_proc()
173 if (opts.fDither) { in get_RGBx_to_565_proc()
228 if (opts.fDither) { in get_gray_to_4444_proc()
262 if (opts.fDither) { in get_RGBx_to_4444_proc()
349 if (opts.fDither) { in get_RGBA_to_4444_proc()
354 if (opts.fDither) { in get_RGBA_to_4444_proc()
440 if (opts.fDither) { in get_index_to_565_proc()
521 if (opts.fDither) { in get_index_to_4444_proc()
526 if (opts.fDither) { in get_index_to_4444_proc()
/external/skia/src/core/
DSkRemote.cpp41 paint->setDither (fDither); in applyTo()
48 && a.fDither == b.fDither; in operator ==()
52 static_assert(sizeof(Misc) > offsetof(Misc, fDither) + sizeof(Misc().fDither), "");
55 return SkChecksum::Murmur3(&misc, offsetof(Misc, fDither) + sizeof(Misc().fDither)); in operator ()()
DSkRemote.h49 bool fAntiAlias, fDither; member
/external/skia/src/effects/gradients/
DSk4fGradientBase.h52 bool fDither; variable
DSk4fGradientBase.cpp68 , fDither(true) in GradientShaderBase4fContext()
70 , fDither(rec.fPaint->isDither()) in GradientShaderBase4fContext()
DSkGradientShaderPriv.h177 bool fDither; variable
DSkGradientShader.cpp298 , fDither(true) in GradientShaderBaseContext()
300 , fDither(rec.fPaint->isDither()) in GradientShaderBaseContext()
302 , fCache(shader.refCache(getPaintAlpha(), fDither)) in GradientShaderBaseContext()
DSkLinearGradient.cpp732 if (fDither) { in shade4_clamp()