Home
last modified time | relevance | path

Searched refs:worst_case_cubic_pow4 (Results 1 – 3 of 3) sorted by relevance

/third_party/skia/src/gpu/tessellate/
DWangsFormula.h179 AI float worst_case_cubic_pow4(float precision, float devWidth, float devHeight) { in worst_case_cubic_pow4() function
187 return root4(worst_case_cubic_pow4(precision, devWidth, devHeight)); in worst_case_cubic()
194 return nextlog16(worst_case_cubic_pow4(precision, devWidth, devHeight)); in worst_case_cubic_log2()
/third_party/skia/src/gpu/ops/
DTessellationPathRenderer.cpp119 float n = wangs_formula::worst_case_cubic_pow4(kTessellationPrecision, in onDrawPath()
209 float n = wangs_formula::worst_case_cubic_pow4(kTessellationPrecision, in onStencilPath()
/third_party/skia/tests/
DWangsFormulaTest.cpp347 REPORTER_ASSERT(r, wangs_formula::worst_case_cubic_pow4(kPrecision, inf, inf) == inf); in DEF_TEST()