* \[Experimental\] Add a font feature for texture control (#2081).

- Currently only available through custom builds with `build-texture-feature = true`.
This commit is contained in:
be5invis 2023-11-10 03:27:51 -08:00
parent d91cbeca6c
commit cfb3826680
9 changed files with 179 additions and 4 deletions

View file

@ -11,6 +11,7 @@ export function init(data, argv) {
applyAlternatesParam(argv, para, data, "slope", "slope");
if (argv.featureControl.noCvSs) para.enableCvSs = false;
if (argv.featureControl.noLigation) para.enableLigation = false;
if (argv.featureControl.buildTexture) para.buildTexture = true;
return para;
}
function applyBlendingParam(argv, para, data, key, keyArgv) {