From 064b24177b398a9ebab16207e303c6725cb544da Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Wed, 9 Oct 2024 15:12:59 -0600 Subject: [PATCH] [coretext] Rename hb-coretext.cc to hb-coretext-shape.cc --- src/harfbuzz.cc | 2 +- src/{hb-coretext.cc => hb-coretext-shape.cc} | 0 src/hb-ms-feature-ranges.hh | 2 +- src/meson.build | 2 +- 4 files changed, 3 insertions(+), 3 deletions(-) rename src/{hb-coretext.cc => hb-coretext-shape.cc} (100%) diff --git a/src/harfbuzz.cc b/src/harfbuzz.cc index 5b6196a48..ecaf6460a 100644 --- a/src/harfbuzz.cc +++ b/src/harfbuzz.cc @@ -6,7 +6,7 @@ #include "hb-buffer-verify.cc" #include "hb-buffer.cc" #include "hb-common.cc" -#include "hb-coretext.cc" +#include "hb-coretext-shape.cc" #include "hb-directwrite.cc" #include "hb-draw.cc" #include "hb-face-builder.cc" diff --git a/src/hb-coretext.cc b/src/hb-coretext-shape.cc similarity index 100% rename from src/hb-coretext.cc rename to src/hb-coretext-shape.cc diff --git a/src/hb-ms-feature-ranges.hh b/src/hb-ms-feature-ranges.hh index f7649ab76..23a5c6f8b 100644 --- a/src/hb-ms-feature-ranges.hh +++ b/src/hb-ms-feature-ranges.hh @@ -30,7 +30,7 @@ #include "hb.hh" -/* Variations of this code exist in hb-coretext.cc as well +/* Variations of this code exist in hb-coretext-shape.cc as well * as hb-aat-map.cc... */ typedef struct hb_ms_feature_t { diff --git a/src/meson.build b/src/meson.build index 9ba5ce716..9e230069a 100644 --- a/src/meson.build +++ b/src/meson.build @@ -346,7 +346,7 @@ hb_wasm_headers = files() # System-dependent sources and headers -hb_coretext_sources = files('hb-coretext.cc') +hb_coretext_sources = files('hb-coretext-shape.cc') hb_coretext_headers = files('hb-coretext.h') hb_directwrite_sources = files('hb-directwrite.cc')