Home
last modified time | relevance | path

Searched refs:xScale (Results 1 – 6 of 6) sorted by relevance

/frameworks/native/headers/media_plugin/media/openmax/
DOMX_Other.h250 OMX_S32 xScale; /**< Current media time scale in Q16 format. */ member
263 OMX_S32 xScale; /**< This is a value in Q16 format which is used for member
/frameworks/base/core/java/android/hardware/input/
DTouchCalibration.java61 public TouchCalibration(float xScale, float xyMix, float xOffset, in TouchCalibration() argument
63 mXScale = xScale; in TouchCalibration()
/frameworks/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/intensive/util/
DImageUtils.java203 public static BufferedImage scale(@NonNull BufferedImage source, double xScale, double yScale) { in scale() argument
207 int destWidth = Math.max(1, (int) (xScale * sourceWidth)); in scale()
213 if (xScale > 0.5 && yScale > 0.5) { in scale()
220 if (xScale == 1 && yScale == 1) { in scale()
/frameworks/native/services/surfaceflinger/CompositionEngine/src/
DOutputLayer.cpp189 float xScale = crop.getWidth() / float(winWidth); in calculateOutputSourceCrop() local
192 float insetL = winCrop.left * xScale; in calculateOutputSourceCrop()
194 float insetR = (winWidth - winCrop.right) * xScale; in calculateOutputSourceCrop()
/frameworks/native/libs/gui/
DSurfaceComposerClient.cpp1162 float xScale = sourceWidth < 0 ? 1.0f : dst.getWidth() / sourceWidth; in setGeometry() local
1168 matrix[0] = -xScale; matrix[1] = 0; in setGeometry()
1173 matrix[0] = xScale; matrix[1] = 0; in setGeometry()
1179 matrix[2] = xScale; matrix[3] = 0; in setGeometry()
1183 matrix[0] = -xScale; matrix[1] = 0; in setGeometry()
1190 matrix[2] = -xScale; matrix[3] = 0; in setGeometry()
1194 matrix[0] = xScale; matrix[1] = 0; in setGeometry()
/frameworks/native/services/surfaceflinger/
DLayer.cpp2047 const float xScale = t.sx(); in fillInputInfo() local
2051 if (xScale != 1.0f || yScale != 1.0f) { in fillInputInfo()
2052 info.windowXScale *= (xScale != 0.0f) ? 1.0f / xScale : 0.0f; in fillInputInfo()
2054 info.touchableRegion.scaleSelf(xScale, yScale); in fillInputInfo()
2055 xSurfaceInset = std::round(xSurfaceInset * xScale); in fillInputInfo()