Searched refs:xScale (Results 1 – 6 of 6) sorted by relevance
250 OMX_S32 xScale; /**< Current media time scale in Q16 format. */ member263 OMX_S32 xScale; /**< This is a value in Q16 format which is used for member
61 public TouchCalibration(float xScale, float xyMix, float xOffset, in TouchCalibration() argument63 mXScale = xScale; in TouchCalibration()
203 public static BufferedImage scale(@NonNull BufferedImage source, double xScale, double yScale) { in scale() argument207 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()
189 float xScale = crop.getWidth() / float(winWidth); in calculateOutputSourceCrop() local192 float insetL = winCrop.left * xScale; in calculateOutputSourceCrop()194 float insetR = (winWidth - winCrop.right) * xScale; in calculateOutputSourceCrop()
1162 float xScale = sourceWidth < 0 ? 1.0f : dst.getWidth() / sourceWidth; in setGeometry() local1168 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()
2047 const float xScale = t.sx(); in fillInputInfo() local2051 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()