aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorMartin Robinson <mrobinson@igalia.com>2024-06-19 22:26:19 +0200
committerGitHub <noreply@github.com>2024-06-19 20:26:19 +0000
commitcd2ab36759dc58acdeb2b8321c38b7345b524a63 (patch)
tree30b940ca93f61d937f719c214d66f22374c90b2f /docs
parent9f8118abc7fd9aba49e422cf13b5243e3b582fdc (diff)
downloadservo-cd2ab36759dc58acdeb2b8321c38b7345b524a63.tar.gz
servo-cd2ab36759dc58acdeb2b8321c38b7345b524a63.zip
Rename `gfx` to `fonts` (#32556)
This crate only takes care of fonts now as graphics related things are split into other crates. In addition, this exposes data structures at the top of the crate, hiding the implementation details and making it simpler to import them. Signed-off-by: Martin Robinson <mrobinson@igalia.com> Co-authored-by: Mukilan Thiyagarajan <mukilan@igalia.com>
Diffstat (limited to 'docs')
-rw-r--r--docs/ORGANIZATION.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/ORGANIZATION.md b/docs/ORGANIZATION.md
index 4d543b583c8..b6ba6bcfb03 100644
--- a/docs/ORGANIZATION.md
+++ b/docs/ORGANIZATION.md
@@ -16,10 +16,10 @@
* In-process server to allow manipulating browser instances via a remote Firefox developer tools client.
* devtools_traits
* APIs to the devtools crate for crates that don't want to depend on the devtools crate for build speed reasons.
- * gfx
- * Draws the result of laying out a page, and sends the result to the compositor.
- * gfx_traits
- * APIs to the gfx crate for crates that don't want to depend on the gfx crate for build speed reasons.
+ * fonts
+ * Code for dealing with fonts and text shaping.
+ * fonts_traits
+ * APIs to the fonts crate for crates that don't want to depend on the fonts crate for build speed reasons.
* layout
* Converts page content into positioned, styled boxes and passes the result to the renderer.
* layout_thread