From 24d49819961539babb082bb2cc5986433de6d71f Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Mon, 11 Dec 2023 21:58:49 -0800 Subject: [PATCH] font: note why shaper is not enabled --- src/font/shape.zig | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/font/shape.zig b/src/font/shape.zig index df54998a1..d86f06bb0 100644 --- a/src/font/shape.zig +++ b/src/font/shape.zig @@ -13,6 +13,8 @@ pub const Shaper = switch (options.backend) { .coretext, => harfbuzz.Shaper, + // Has missing features, can't be used yet. See the comments in + // the coretext.zig file for more details. //.coretext => coretext.Shaper, .web_canvas => web_canvas.Shaper,