msdfgen/core/generator-config.h

36 lines
1.5 KiB
C++

#pragma once
#define MSDFGEN_DEFAULT_ARTIFACT_PATCHER_MIN_IMPROVE_RATIO 1.001
namespace msdfgen {
/// The configuration of the distance field generator algorithm.
struct GeneratorConfig {
/// Specifies whether to use the version of the algorithm that supports overlapping contours with the same winding. May be set to false to improve performance when no such contours are present.
bool overlapSupport;
inline explicit GeneratorConfig(bool overlapSupport = true) : overlapSupport(overlapSupport) { }
};
/// The configuration of the artifact patcher that processes the generated MSDF and fixes potential interpolation errors.
struct ArtifactPatcherConfig {
/// The mode of operation.
enum Mode {
/// Skips artifact patcher pass.
DISABLED,
/// Patches all discontinuities of the distance field regardless if edges are adversely affected.
INDISCRIMINATE,
/// Patches artifacts at edges and other discontinuous distances only if it does not affect edges or corners.
EDGE_PRIORITY,
/// Only patches artifacts at edges, may be significantly faster than the other modes.
EDGE_ONLY
} mode;
/// The minimum ratio of improvement required to patch a pixel. Must be greater than or equal to 1.
double minImproveRatio;
inline explicit ArtifactPatcherConfig(Mode mode = EDGE_PRIORITY, double minImproveRatio = MSDFGEN_DEFAULT_ARTIFACT_PATCHER_MIN_IMPROVE_RATIO) : mode(mode), minImproveRatio(minImproveRatio) { }
};
}