Searched refs:cropSize (Results 1 – 4 of 4) sorted by relevance
155 glUniform2f(mCropCenterLoc, desc.cropSize.x / 2.0f, desc.cropSize.y / 2.0f); in setUniforms()
1290 mState.cropSize = half2(width, height); in setupCornerRadiusCropSize()
57 half2 cropSize; member
728 private static SizeF getZoomRatio(Size activeArraySize, Size cropSize) { in getZoomRatio() argument730 checkNotNull(cropSize, "cropSize must not be null"); in getZoomRatio()731 checkArgumentPositive(cropSize.getWidth(), "cropSize.width must be positive"); in getZoomRatio()732 checkArgumentPositive(cropSize.getHeight(), "cropSize.height must be positive"); in getZoomRatio()734 float zoomRatioWidth = activeArraySize.getWidth() * 1.0f / cropSize.getWidth(); in getZoomRatio()735 float zoomRatioHeight = activeArraySize.getHeight() * 1.0f / cropSize.getHeight(); in getZoomRatio()