The configuration of the multi-channel distance field generator algorithm.
| 56 | |
| 57 | /// The configuration of the multi-channel distance field generator algorithm. |
| 58 | struct MSDFGeneratorConfig : GeneratorConfig { |
| 59 | /// Configuration of the error correction pass. |
| 60 | ErrorCorrectionConfig errorCorrection; |
| 61 | |
| 62 | inline MSDFGeneratorConfig() { } |
| 63 | inline explicit MSDFGeneratorConfig(bool overlapSupport, const ErrorCorrectionConfig &errorCorrection = ErrorCorrectionConfig()) : GeneratorConfig(overlapSupport), errorCorrection(errorCorrection) { } |
| 64 | }; |
| 65 | |
| 66 | } |
no outgoing calls
no test coverage detected