Home
last modified time | relevance | path

Searched refs:devHeight (Results 1 – 1 of 1) 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() argument
181 return 4*kk * (devWidth * devWidth + devHeight * devHeight); in worst_case_cubic_pow4()
186 AI float worst_case_cubic(float precision, float devWidth, float devHeight) { in worst_case_cubic() argument
187 return root4(worst_case_cubic_pow4(precision, devWidth, devHeight)); in worst_case_cubic()
192 AI int worst_case_cubic_log2(float precision, float devWidth, float devHeight) { in worst_case_cubic_log2() argument
194 return nextlog16(worst_case_cubic_pow4(precision, devWidth, devHeight)); in worst_case_cubic_log2()