Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -144,12 +144,12 @@ Every package and subpath is native ESM. Optional engines and the runtime baker

Applications select a raster explicitly; the package never silently changes technique.

| Need | Planned recommendation |
| --------------------------------------------------------------- | --------------------------------- |
| General-purpose UI and scalable text | MSDF module using its MTSDF atlas |
| Tiny text at known pixel sizes | Generated bitmap strikes |
| Large text, extreme zoom, complex outlines, color vector layers | Slug |
| Pixel-art or intentionally raster typography | Bitmap |
| Need | V1 recommendation |
| ------------------------------------------------------- | --------------------------------- |
| General-purpose UI and scalable text | MSDF module using its MTSDF atlas |
| Tiny text at known pixel sizes | Generated bitmap strikes |
| Large text, extreme zoom, intricate monochrome outlines | Slug |
| Pixel-art or intentionally raster typography | Bitmap |

The [renderer capability matrix](docs/planning/renderer-capabilities.md) records supported content and effects, while the [implementation difficulty](docs/planning/implementation-difficulty.md) explains the correctness and performance effort behind their order. Windfoil remains research prior art rather than a planned backend.

Expand Down
2 changes: 1 addition & 1 deletion apps/benchmarks/doctor.config.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"vitexec/**",
"src/benchmark/bake-host-baseline.ts",
"src/benchmark/worker-queue-evidence.ts",
"src/benchmark/targets/measurement/comparison-preview.ts"
"src/benchmark/probes/comparison-workload-preview.ts"
],
"overrides": [
{
Expand Down
2 changes: 1 addition & 1 deletion apps/benchmarks/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"check:size": "pnpm --filter @pmndrs/text build && pnpm --filter @pmndrs/text-font-baker build && node ./scripts/measure-package-sizes.mts --check",
"check:paragraph-bidi-contract": "pnpm --filter @pmndrs/text build && pnpm --filter @pmndrs/text-font-baker build && node ./scripts/generate-paragraph-bidi-contract.mts --check",
"check:paragraph-cjk-contract": "pnpm --filter @pmndrs/text build && pnpm --filter @pmndrs/text-font-baker build && node ./scripts/generate-paragraph-cjk-contract.mts --check",
"check:react-doctor": "pnpm dlx react-doctor@0.7.2 . --scope full --blocking warning --no-supply-chain --no-color",
"check:react-doctor": "pnpm dlx react-doctor@0.7.2 . --scope full --blocking warning --verbose --no-supply-chain --no-color",
"capture:presentation-workloads": "node ./scripts/capture-presentation-workloads.mts",
"check:mtsdf-render-fixture": "pnpm --filter @pmndrs/text build && pnpm --filter @pmndrs/text-font-baker build && node ./scripts/generate-mtsdf-render-fixture.mts --check",
"check:slug-render-fixture": "pnpm --filter @pmndrs/text build && pnpm --filter @pmndrs/text-font-baker build && node ./scripts/generate-slug-render-fixture.mts --check",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { copyFile, mkdir, mkdtemp, readFile, rm, writeFile } from 'node:fs/promi
import { tmpdir } from 'node:os';
import { join, resolve } from 'node:path';

import { ADVANCED_SHAPING_CASES } from '../src/workloads/advanced-shaping.ts';
import { ADVANCED_SHAPING_CASES } from '../src/workloads/advanced-shaping/scene.ts';

const harfBuzzVersion = '13.0.0';
const sourceDirectory = resolve('fixtures/fonts/noto-sans-cjk-2.004');
Expand Down
Loading
Loading