SatMode
Sets the saturation and non-saturation modes for Cast type conversion. The options are as follows:
- SatMode::UNKNOWN: used when the conversion type does not support the SatMode mode.
- SatMode::NO_SAT: unsaturation mode.
- SatMode::SAT: saturation mode.
enum class SatMode {
UNKNOWN = -1,
NO_SAT,
SAT
};
Parent topic: Data Types