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

/frameworks/base/services/core/java/com/android/server/wm/
H A DWindowState.java281 float mGlobalScale=1; field in class:WindowState
1150 mGlobalScale = mService.mCompatibleScreenScale;
1151 mInvGlobalScale = 1/mGlobalScale;
1153 mGlobalScale = mInvGlobalScale = 1;
2769 w = (int)(mAttrs.width * mGlobalScale + .5f);
2776 h = (int)(mAttrs.height * mGlobalScale + .5f);
2784 w = (int)(mRequestedWidth * mGlobalScale + .5f);
2791 h = (int)(mRequestedHeight * mGlobalScale + .5f);
2798 x = mAttrs.x * mGlobalScale;
2799 y = mAttrs.y * mGlobalScale;
[all...]

Completed in 12 milliseconds