From 2f074b87f335014aa7c639a2cf9a7703a3d1899d Mon Sep 17 00:00:00 2001 From: Daniel Imms <2193314+Tyriar@users.noreply.github.com> Date: Thu, 2 Nov 2023 10:45:46 -0700 Subject: [PATCH] Explain VARIANT_OFFSET --- src/common/buffer/Constants.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/common/buffer/Constants.ts b/src/common/buffer/Constants.ts index 3bfd850a..5ce075cf 100644 --- a/src/common/buffer/Constants.ts +++ b/src/common/buffer/Constants.ts @@ -140,6 +140,9 @@ export const enum ExtFlags { /** * bit 30..32 + * + * An optional variant for the glyph, this can be used for example to offset underlines by a + * number of pixels to create a perfect pattern. */ VARIANT_OFFSET = 0xE0000000 }