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

  /external/skia/src/utils/
SkShadowTessellator.h 21 typedef std::function<SkScalar(SkScalar, SkScalar)> HeightFunc;
29 HeightFunc heightFunc, SkScalar ambientAlpha, bool transparent);
36 sk_sp<SkVertices> MakeSpot(const SkPath& path, const SkMatrix& ctm, HeightFunc heightFunc,
SkShadowTessellator.cpp 25 SkBaseShadowTessellator(SkShadowTessellator::HeightFunc, bool transparent);
59 SkShadowTessellator::HeightFunc fHeightFunc;
121 SkBaseShadowTessellator::SkBaseShadowTessellator(SkShadowTessellator::HeightFunc heightFunc,
123 : fHeightFunc(heightFunc)
328 SkShadowTessellator::HeightFunc heightFunc,
355 SkShadowTessellator::HeightFunc heightFunc,
358 : INHERITED(heightFunc, transparent
    [all...]
SkShadowUtils.cpp 562 std::function<SkScalar(SkScalar, SkScalar)> heightFunc,
575 heightFunc, ambientAlpha,
588 sk_sp<SkVertices> vertices = SkShadowTessellator::MakeSpot(path, viewMatrix, heightFunc,
  /external/skia/tests/
ShadowUtilsTest.cpp 20 auto heightFunc = [] (SkScalar, SkScalar) { return 4; };
22 auto verts = SkShadowTessellator::MakeAmbient(path, ctm, heightFunc, kAmbientAlpha, true);
27 verts = SkShadowTessellator::MakeAmbient(path, ctm, heightFunc, kAmbientAlpha, false);
32 verts = SkShadowTessellator::MakeSpot(path, ctm, heightFunc, {0, 0, 128}, 128.f,
38 verts = SkShadowTessellator::MakeSpot(path, ctm, heightFunc, {0, 0, 128}, 128.f,
  /external/skia/include/utils/
SkShadowUtils.h 53 * @param heightFunc A function which returns the vertical offset of the occluder from the
65 std::function<SkScalar(SkScalar, SkScalar)> heightFunc,

Completed in 519 milliseconds