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

/frameworks/native/services/surfaceflinger/
H A DTransform.cpp49 bool Transform::isZero(float f) { function in class:android::Transform
54 return isZero(fabs(f) - 1.0f);
117 if (isZero(tx) && isZero(ty)) {
149 H.mType |= isZero(w) ? IDENTITY : TRANSLATE;
157 V.mType |= isZero(h) ? IDENTITY : TRANSLATE;
166 R.mType |= isZero(original_w) ? IDENTITY : TRANSLATE;
263 if (isZero(b) && isZero(c)) {
269 } else if (isZero(
[all...]
/frameworks/base/libs/hwui/
H A DMatrix.cpp71 static bool isZero(float f) { function in namespace:android::uirenderer
108 if ((isZero(m00) && isZero(m11) && !isZero(m01) && !isZero(m10)) ||
109 (isZero(m01) && isZero(m10) && !isZero(m00) && !isZero(m11))) {

Completed in 65 milliseconds