Lines Matching refs:yShift
116 float yShift = 0; in updateCaptureRequest() local
122 yShift = ch; in updateCaptureRequest()
135 yShift = (ch - rh) / 2; // top edge of crop to top edge of rotated in updateCaptureRequest()
141 yShift = (ch + rh) / 2; // top edge of crop to bottom edge of rotated in updateCaptureRequest()
156 transformPoints(entry.data.i32 + i, 2, transformMat, xShift, yShift, cx, cy); in updateCaptureRequest()
240 float yShift = 0; in updateCaptureResult() local
247 yShift = ch; in updateCaptureResult()
264 yShift = ry - cy + ch; // top edge of rotated to bottom edge of cropped in updateCaptureResult()
270 yShift = (ch - rh) / 2; // top edge of rotated to bottom edge of cropped in updateCaptureResult()
285 transformPoints(entry.data.i32 + i, 2, transformMat, xShift, yShift, rx, ry); in updateCaptureResult()
292 transformPoints(entry.data.i32, entry.count / 2, transformMat, xShift, yShift, rx, ry); in updateCaptureResult()
304 float xShift, float yShift, float ox, float oy) { in transformPoints() argument
309 int32_t ny = std::round(transformMat[2] * x0 + transformMat[3] * y0 + yShift + oy); in transformPoints()