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

/frameworks/base/services/java/com/android/server/wm/
H A DWindowState.java174 float mGlobalScale=1; field in class:WindowState
374 w = (int)(mAttrs.width * mGlobalScale + .5f);
381 h = (int)(mAttrs.height * mGlobalScale + .5f);
389 w = (int)(mRequestedWidth * mGlobalScale + .5f);
396 h = (int)(mRequestedHeight * mGlobalScale + .5f);
429 x = mAttrs.x * mGlobalScale;
430 y = mAttrs.y * mGlobalScale;
603 mGlobalScale = mService.mCompatibleScreenScale;
604 mInvGlobalScale = 1/mGlobalScale;
606 mGlobalScale
[all...]

Completed in 168 milliseconds