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

/frameworks/base/services/java/com/android/server/wm/
H A DWindowState.java202 float mGlobalScale=1; field in class:WindowState
485 w = (int)(mAttrs.width * mGlobalScale + .5f);
492 h = (int)(mAttrs.height * mGlobalScale + .5f);
500 w = (int)(mRequestedWidth * mGlobalScale + .5f);
507 h = (int)(mRequestedHeight * mGlobalScale + .5f);
538 x = mAttrs.x * mGlobalScale;
539 y = mAttrs.y * mGlobalScale;
758 mGlobalScale = mService.mCompatibleScreenScale;
759 mInvGlobalScale = 1/mGlobalScale;
761 mGlobalScale
[all...]

Completed in 50 milliseconds