Searched defs:divx (Results 1 - 1 of 1) sorted by relevance

/external/skia/src/core/
H A DSkMatrix.cpp235 bool SkMatrix::setIDiv(int divx, int divy) { argument
236 if (!divx || !divy) {
239 this->setScale(SK_Scalar1 / divx, SK_Scalar1 / divy);
310 bool SkMatrix::postIDiv(int divx, int divy) { argument
311 if (divx == 0 || divy == 0) {
316 fMat[kMScaleX] = roundidiv(fMat[kMScaleX], divx);
317 fMat[kMSkewX] = roundidiv(fMat[kMSkewX], divx);
318 fMat[kMTransX] = roundidiv(fMat[kMTransX], divx);
324 const float invX = 1.f / divx;

Completed in 259 milliseconds