Home
last modified time | relevance | path

Searched refs:divy (Results 1 – 2 of 2) sorted by relevance

/external/skia/src/core/
DSkMatrix.cpp237 bool SkMatrix::postIDiv(int divx, int divy) { in postIDiv() argument
238 if (divx == 0 || divy == 0) { in postIDiv()
247 fMat[kMScaleY] = roundidiv(fMat[kMScaleY], divy); in postIDiv()
248 fMat[kMSkewY] = roundidiv(fMat[kMSkewY], divy); in postIDiv()
249 fMat[kMTransY] = roundidiv(fMat[kMTransY], divy); in postIDiv()
252 const float invY = 1.f / divy; in postIDiv()
/external/skia/include/core/
DSkMatrix.h220 bool postIDiv(int divx, int divy);