| 81 | } |
| 82 | |
| 83 | void SetLicensePlateTextTuning(const LicensePlateTextTuning& tuning) |
| 84 | { |
| 85 | s_licensePlateTextTuning.widthScale = floatMax(0.1f, tuning.widthScale); |
| 86 | s_licensePlateTextTuning.horizontalOffset = tuning.horizontalOffset; |
| 87 | s_licensePlateTextTuning.verticalOffset = tuning.verticalOffset; |
| 88 | s_licensePlateTextTuning.surfaceOffset = floatMax(0.0f, tuning.surfaceOffset); |
| 89 | s_licensePlateTextTuning.softness = floatMax(0.0f, tuning.softness); |
| 90 | } |
| 91 | |
| 92 | void ResetLicensePlateTextTuning() |
| 93 | { |
no test coverage detected